Thomas Vachuska | 74bcd92 | 2015-06-02 13:08:57 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Foundation |
Thomas Vachuska | 74bcd92 | 2015-06-02 13:08:57 -0700 | [diff] [blame] | 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="shutdown" description="ONOS cluster shutdown"> |
Jordan Halterman | d326de1 | 2018-07-31 11:57:21 -0700 | [diff] [blame] | 17 | <group name="Shutdown-ONOS"> |
Thomas Vachuska | 74bcd92 | 2015-06-02 13:08:57 -0700 | [diff] [blame] | 18 | <parallel var="${OC#}"> |
| 19 | <step name="Stop-Service-${#}" exec="onos-service ${OC#} stop"/> |
Thomas Vachuska | 13a93f3 | 2016-11-22 14:15:04 -0800 | [diff] [blame] | 20 | <step name="Wait-for-Stop-${#}" exec="onos-wait-for-stop ${OC#}" |
Thomas Vachuska | 74bcd92 | 2015-06-02 13:08:57 -0700 | [diff] [blame] | 21 | requires="~Stop-Service-${#}"/> |
Andrea Campanella | 6d77423 | 2018-12-21 12:18:21 +0100 | [diff] [blame] | 22 | <step name="Shutdown-ONOS.Check-Logs-${#}" exec="onos-check-logs ${OC#}" |
Thomas Vachuska | 13a93f3 | 2016-11-22 14:15:04 -0800 | [diff] [blame] | 23 | requires="~Wait-for-Stop-${#}"/> |
Thomas Vachuska | 74bcd92 | 2015-06-02 13:08:57 -0700 | [diff] [blame] | 24 | </parallel> |
| 25 | </group> |
Jordan Halterman | d326de1 | 2018-07-31 11:57:21 -0700 | [diff] [blame] | 26 | <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 Halterman | fa71cc6 | 2018-08-08 12:04:56 -0700 | [diff] [blame] | 34 | <step name="Atomix-Kill-${#}" env="~" exec="atomix-kill ${OCC#}" requires="~Shutdown-ONOS"/> |
Jordan Halterman | d326de1 | 2018-07-31 11:57:21 -0700 | [diff] [blame] | 35 | </parallel> |
| 36 | </group> |
| 37 | </group> |
Thomas Vachuska | 74bcd92 | 2015-06-02 13:08:57 -0700 | [diff] [blame] | 38 | </scenario> |