blob: f493da40f6725ea6e1daf9108a9025473e4736c3 [file] [log] [blame]
Thomas Vachuska74bcd922015-06-02 13:08:57 -07001<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2015-present Open Networking Foundation
Thomas Vachuska74bcd922015-06-02 13:08:57 -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="shutdown" description="ONOS cluster shutdown">
Jordan Haltermand326de12018-07-31 11:57:21 -070017 <group name="Shutdown-ONOS">
Thomas Vachuska74bcd922015-06-02 13:08:57 -070018 <parallel var="${OC#}">
19 <step name="Stop-Service-${#}" exec="onos-service ${OC#} stop"/>
Thomas Vachuska13a93f32016-11-22 14:15:04 -080020 <step name="Wait-for-Stop-${#}" exec="onos-wait-for-stop ${OC#}"
Thomas Vachuska74bcd922015-06-02 13:08:57 -070021 requires="~Stop-Service-${#}"/>
Andrea Campanella6d774232018-12-21 12:18:21 +010022 <step name="Shutdown-ONOS.Check-Logs-${#}" exec="onos-check-logs ${OC#}"
Thomas Vachuska13a93f32016-11-22 14:15:04 -080023 requires="~Wait-for-Stop-${#}"/>
Thomas Vachuska74bcd922015-06-02 13:08:57 -070024 </parallel>
25 </group>
Jordan Haltermand326de12018-07-31 11:57:21 -070026 <group name="Shutdown-Atomix">
27 <group name="Shutdown-Atomix-OC" unless="${OCC1}">
28 <parallel var="${OC#}">
29 <step name="Atomix-Kill-${#}" env="~" exec="atomix-kill ${OC#}" requires="Shutdown-ONOS"/>
30 </parallel>
31 </group>
32 <group name="Shutdown-Atomix-OCC" if="${OCC1}">
33 <parallel var="${OCC#}">
Jordan Haltermanfa71cc62018-08-08 12:04:56 -070034 <step name="Atomix-Kill-${#}" env="~" exec="atomix-kill ${OCC#}" requires="~Shutdown-ONOS"/>
Jordan Haltermand326de12018-07-31 11:57:21 -070035 </parallel>
36 </group>
37 </group>
Thomas Vachuska74bcd922015-06-02 13:08:57 -070038</scenario>