Thomas Vachuska | f9c8436 | 2015-04-15 11:20:45 -0700 | [diff] [blame] | 1 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 2 | ~ Copyright 2015-present Open Networking Laboratory |
Thomas Vachuska | f9c8436 | 2015-04-15 11:20:45 -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="setup" description="ONOS cluster setup"> |
| 17 | <group name="Setup"> |
| 18 | <step name="Push-Bits" exec="onos-push-bits-through-proxy" if="${OCT}"/> |
Thomas Vachuska | 68acdba | 2016-03-02 19:41:27 -0800 | [diff] [blame] | 19 | <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 Vachuska | 8189a74 | 2015-05-29 10:02:52 -0700 | [diff] [blame] | 21 | |
Jon Hall | fe4a073 | 2017-03-31 10:46:02 -0700 | [diff] [blame] | 22 | <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 Vachuska | 8189a74 | 2015-05-29 10:02:52 -0700 | [diff] [blame] | 31 | |
Jon Hall | fe4a073 | 2017-03-31 10:46:02 -0700 | [diff] [blame] | 32 | <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 Vachuska | 8189a74 | 2015-05-29 10:02:52 -0700 | [diff] [blame] | 41 | |
Jon Hall | fe4a073 | 2017-03-31 10:46:02 -0700 | [diff] [blame] | 42 | <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 Vachuska | 12bf445 | 2015-06-26 09:15:38 -0700 | [diff] [blame] | 49 | |
Jon Hall | fe4a073 | 2017-03-31 10:46:02 -0700 | [diff] [blame] | 50 | <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 Vachuska | 8189a74 | 2015-05-29 10:02:52 -0700 | [diff] [blame] | 55 | |
Jon Hall | fe4a073 | 2017-03-31 10:46:02 -0700 | [diff] [blame] | 56 | <step name="Wait-for-Start-${#}" exec="onos-wait-for-start ${OC#}" |
| 57 | requires="~Secure-SSH-${#}"/> |
Thomas Vachuska | 731193d | 2015-12-10 11:41:46 -0800 | [diff] [blame] | 58 | |
Jon Hall | fe4a073 | 2017-03-31 10:46:02 -0700 | [diff] [blame] | 59 | <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 Vachuska | 68acdba | 2016-03-02 19:41:27 -0800 | [diff] [blame] | 64 | |
Jon Hall | fe4a073 | 2017-03-31 10:46:02 -0700 | [diff] [blame] | 65 | <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 Vachuska | f9c8436 | 2015-04-15 11:20:45 -0700 | [diff] [blame] | 74 | </group> |
| 75 | </scenario> |