blob: 4f45debc1cf9c08766c2c9977d89d94440ebe2fe [file] [log] [blame]
Thomas Vachuskaf9c84362015-04-15 11:20:45 -07001<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuskaf9c84362015-04-15 11:20:45 -07003 ~
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
Jon Hallfe4a0732017-03-31 10:46:02 -070022 <group name="Cleanup">
23 <parallel var="${OC#}">
24 <step name="Push-Bits-${#}" exec="onos-push-bits ${OC#}"
25 unless="${OCT}"/>
26 <step name="Uninstall-${#}" exec="onos-uninstall ${OC#}"/>
27 <step name="Kill-${#}" env="~" exec="onos-kill ${OC#}"
28 requires="Uninstall-${#}"/>
29 </parallel>
30 </group>
Thomas Vachuska8189a742015-05-29 10:02:52 -070031
Jon Hallfe4a0732017-03-31 10:46:02 -070032 <group name="Install">
33 <group name="Sequential-Install" if="${ONOS_STC_SEQ_START}">
34 <sequential var="${OC#}"
35 starts="Sequential-Install-${#}"
36 ends="Sequential-Install-${#-1}">
37 <step name="Sequential-Install-${#}" exec="onos-install ${OC#}"
38 requires="Push-Bits-${#},Push-Bits,Cleanup"/>
39 </sequential>
40 </group>
Thomas Vachuska8189a742015-05-29 10:02:52 -070041
Jon Hallfe4a0732017-03-31 10:46:02 -070042 <group name="Parallel-Install" unless="${ONOS_STC_SEQ_START}">
43 <parallel var="${OC#}">
44 <step name="Parallel-Install-${#}" exec="onos-install ${OC#}"
45 requires="Push-Bits-${#},Push-Bits,Cleanup"/>
46 </parallel>
47 </group>
48 </group>
Thomas Vachuska12bf4452015-06-26 09:15:38 -070049
Jon Hallfe4a0732017-03-31 10:46:02 -070050 <group name="Verify" requires="Install">
51 <parallel var="${OC#}">
52 <step name="Secure-SSH-${#}"
53 exec="onos-secure-ssh -u ${ONOS_WEB_USER} -p ${ONOS_WEB_PASS} ${OC#}"
54 requires="Install"/>
Thomas Vachuska8189a742015-05-29 10:02:52 -070055
Jon Hallfe4a0732017-03-31 10:46:02 -070056 <step name="Wait-for-Start-${#}" exec="onos-wait-for-start ${OC#}"
57 requires="~Secure-SSH-${#}"/>
Thomas Vachuska731193d2015-12-10 11:41:46 -080058
Jon Hallfe4a0732017-03-31 10:46:02 -070059 <step name="Check-Nodes-${#}" exec="onos-check-nodes ${OC#}" delay="3"
60 requires="~Wait-for-Start-${#}"/>
61 <step name="Check-Components-${#}" delay="5"
62 exec="onos-check-components ${OC#}"
63 requires="~Wait-for-Start-${#}"/>
Thomas Vachuska68acdba2016-03-02 19:41:27 -080064
Jon Hallfe4a0732017-03-31 10:46:02 -070065 <step name="Check-Logs-${#}" exec="onos-check-logs ${OC#}"
66 requires="~Check-Components-${#}"/>
67 <step name="Check-Apps-${#}" exec="onos-check-apps ${OC#} ${ONOS_APPS} includes"
68 requires="~Check-Components-${#}"/>
69
70 <dependency name="Enable-Flow-Objective-Intents" requires="Check-Apps-${#}"/>
71 </parallel>
72 </group>
73
Thomas Vachuskaf9c84362015-04-15 11:20:45 -070074 </group>
75</scenario>