Zack Williams | 6f0d88e | 2018-01-13 23:04:02 -0700 | [diff] [blame] | 1 | --- |
Matteo Scandolo | 3896c47 | 2017-08-01 13:31:42 -0700 | [diff] [blame] | 2 | # Copyright 2017-present Open Networking Foundation |
| 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 | |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 16 | # pod-test-playbook.yml |
Zack Williams | 6f0d88e | 2018-01-13 23:04:02 -0700 | [diff] [blame] | 17 | # Tests rcord XOS configuration |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 18 | |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 19 | - name: Create test client |
| 20 | hosts: head |
| 21 | become: yes |
| 22 | roles: |
Zack Williams | 18b6f02 | 2018-01-19 11:46:54 -0700 | [diff] [blame] | 23 | - test-client-install |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 24 | |
| 25 | - name: Create test subscriber |
| 26 | hosts: head |
| 27 | roles: |
| 28 | - test-subscriber-config |
| 29 | |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 30 | - name: Enable the test subscriber |
Matteo Scandolo | 55bb096 | 2017-12-20 16:06:19 -0800 | [diff] [blame] | 31 | hosts: head |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 32 | roles: |
| 33 | - test-subscriber-enable |
| 34 | |
| 35 | - name: Test VSG |
| 36 | hosts: head |
| 37 | become: no |
| 38 | roles: |
| 39 | - test-vsg |
| 40 | |
Zack Williams | f6c3c57 | 2018-02-02 14:16:24 -0700 | [diff] [blame] | 41 | - import_playbook: onboard-exampleservice-playbook.yml |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 42 | |
| 43 | - name: Test ExampleService |
| 44 | hosts: head |
| 45 | become: no |
| 46 | roles: |
| 47 | - test-exampleservice |
| 48 | |