blob: 9e992f5c19377c766debed608fca2d09e6d59032 [file] [log] [blame]
Thomas Vachuskaf9c84362015-04-15 11:20:45 -07001<!--
2 ~ Copyright 2015 Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16<scenario name="setup" description="ONOS cluster setup">
17 <group name="Setup">
18 <step name="Push-Bits" exec="onos-push-bits-through-proxy" if="${OCT}"/>
Thomas Vachuska68acdba2016-03-02 19:41:27 -080019 <step name="Enable-Flow-Objective-Intents" if="${ONOS_USE_FOI}"
20 exec="onos ${OC1} cfg set org.onosproject.net.intent.impl.compiler.IntentConfigurableRegistrator useFlowObjectives true"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070021
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070022 <parallel var="${OC#}">
Thomas Vachuska12bf4452015-06-26 09:15:38 -070023 <step name="Push-Bits-${#}" exec="onos-push-bits ${OC#}"
24 unless="${OCT}"/>
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070025 <step name="Uninstall-${#}" exec="onos-uninstall ${OC#}"/>
Thomas Vachuska12bf4452015-06-26 09:15:38 -070026 <step name="Kill-${#}" env="~" exec="onos-kill ${OC#}"
27 requires="Uninstall-${#}"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070028
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070029 <step name="Install-${#}" exec="onos-install ${OC#}"
Thomas Vachuska4cfcc562015-06-03 09:51:02 -070030 requires="Kill-${#},Push-Bits-${#},Push-Bits"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070031
Thomas Vachuska35349332016-04-04 14:06:46 -070032 <step name="Secure-SSH-${#}" requires="Install-${#}"
33 exec="onos-secure-ssh -u ${ONOS_WEB_USER} -p ${ONOS_WEB_PASS} ${OC#}"
34 if="${ONOS_USE_SSH}"/>
Thomas Vachuska12bf4452015-06-26 09:15:38 -070035
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070036 <step name="Wait-for-Start-${#}" exec="onos-wait-for-start ${OC#}"
Thomas Vachuska35349332016-04-04 14:06:46 -070037 requires="Install-${#},~Secure-SSH-${#}"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070038
Thomas Vachuska731193d2015-12-10 11:41:46 -080039 <step name="Check-Nodes-${#}" exec="onos-check-nodes ${OC#}" delay="3"
Thomas Vachuska4b84baf2015-07-27 10:49:06 -070040 requires="~Wait-for-Start-${#}"/>
Thomas Vachuska731193d2015-12-10 11:41:46 -080041 <step name="Check-Components-${#}" delay="5"
Thomas Vachuska12bf4452015-06-26 09:15:38 -070042 exec="onos-check-components ${OC#}"
Thomas Vachuska4cfcc562015-06-03 09:51:02 -070043 requires="~Wait-for-Start-${#}"/>
Thomas Vachuska731193d2015-12-10 11:41:46 -080044
45 <step name="Check-Logs-${#}" exec="onos-check-logs ${OC#}"
46 requires="~Check-Components-${#}"/>
47 <step name="Check-Apps-${#}" exec="onos-check-apps ${OC#} ${ONOS_APPS} includes"
48 requires="~Check-Components-${#}"/>
Thomas Vachuska68acdba2016-03-02 19:41:27 -080049
50 <dependency name="Enable-Flow-Objective-Intents" requires="Check-Apps-${#}"/>
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070051 </parallel>
52 </group>
53</scenario>