blob: 10f6ba6abf1c8659b125d748d0bad6d65e2f954c [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 Vachuska3c831fa2015-08-17 18:44:15 -070019 <step name="Secure-SSH" exec="onos-secure-ssh -u ${ONOS_WEB_USER} -p ${ONOS_WEB_PASS}" if="${ONOS_USE_SSH}"/>
Thomas Vachuska68acdba2016-03-02 19:41:27 -080020 <step name="Enable-Flow-Objective-Intents" if="${ONOS_USE_FOI}"
21 exec="onos ${OC1} cfg set org.onosproject.net.intent.impl.compiler.IntentConfigurableRegistrator useFlowObjectives true"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070022
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070023 <parallel var="${OC#}">
Thomas Vachuska12bf4452015-06-26 09:15:38 -070024 <step name="Push-Bits-${#}" exec="onos-push-bits ${OC#}"
25 unless="${OCT}"/>
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070026 <step name="Uninstall-${#}" exec="onos-uninstall ${OC#}"/>
Thomas Vachuska12bf4452015-06-26 09:15:38 -070027 <step name="Kill-${#}" env="~" exec="onos-kill ${OC#}"
28 requires="Uninstall-${#}"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070029
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070030 <step name="Install-${#}" exec="onos-install ${OC#}"
Thomas Vachuska4cfcc562015-06-03 09:51:02 -070031 requires="Kill-${#},Push-Bits-${#},Push-Bits"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070032
Thomas Vachuska12bf4452015-06-26 09:15:38 -070033 <dependency name="Secure-SSH" requires="Install-${#}"/>
34
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070035 <step name="Wait-for-Start-${#}" exec="onos-wait-for-start ${OC#}"
Thomas Vachuska12bf4452015-06-26 09:15:38 -070036 requires="Install-${#},~Secure-SSH"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070037
Thomas Vachuska731193d2015-12-10 11:41:46 -080038 <step name="Check-Nodes-${#}" exec="onos-check-nodes ${OC#}" delay="3"
Thomas Vachuska4b84baf2015-07-27 10:49:06 -070039 requires="~Wait-for-Start-${#}"/>
Thomas Vachuska731193d2015-12-10 11:41:46 -080040 <step name="Check-Components-${#}" delay="5"
Thomas Vachuska12bf4452015-06-26 09:15:38 -070041 exec="onos-check-components ${OC#}"
Thomas Vachuska4cfcc562015-06-03 09:51:02 -070042 requires="~Wait-for-Start-${#}"/>
Thomas Vachuska731193d2015-12-10 11:41:46 -080043
44 <step name="Check-Logs-${#}" exec="onos-check-logs ${OC#}"
45 requires="~Check-Components-${#}"/>
46 <step name="Check-Apps-${#}" exec="onos-check-apps ${OC#} ${ONOS_APPS} includes"
47 requires="~Check-Components-${#}"/>
Thomas Vachuska68acdba2016-03-02 19:41:27 -080048
49 <dependency name="Enable-Flow-Objective-Intents" requires="Check-Apps-${#}"/>
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070050 </parallel>
51 </group>
52</scenario>