Zack Williams | fc6b64b | 2017-12-22 15:57:50 -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 | # compute-node-enable/tasks/main.yml |
| 17 | |
| 18 | - name: Load TOSCA to add OpenStack compute nodes |
Matteo Scandolo | 1ed76b8 | 2017-12-05 13:58:22 -0800 | [diff] [blame] | 19 | uri: |
| 20 | url: "{{ xos_tosca_url }}/run" |
| 21 | method: POST |
| 22 | headers: |
| 23 | xos-username: "{{ xos_admin_user }}" |
Zack Williams | fc6b64b | 2017-12-22 15:57:50 -0700 | [diff] [blame] | 24 | xos-password: "{{ head_xos_admin_pass }}" |
Matteo Scandolo | 1ed76b8 | 2017-12-05 13:58:22 -0800 | [diff] [blame] | 25 | body: "{{ lookup('file', head_cord_profile_dir + '/' + item ) }}" |
| 26 | status_code: 200 |
Scott Baker | 253ebc2 | 2018-01-17 16:16:35 -0800 | [diff] [blame] | 27 | register: result |
| 28 | until: result | success |
Scott Baker | 3f24f64 | 2018-01-22 11:38:20 -0800 | [diff] [blame] | 29 | retries: 50 |
| 30 | delay: 5 |
Zack Williams | 2478b30 | 2017-02-14 10:42:55 -0700 | [diff] [blame] | 31 | with_items: |
| 32 | - openstack.yaml |
| 33 | - openstack-compute.yaml |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 34 | tags: |
| 35 | - skip_ansible_lint # TOSCA loading should be idempotent |
| 36 | |
| 37 | - name: Pause to work around race in VTN or ONOS synchronizers |
| 38 | pause: |
| 39 | seconds: 20 |
| 40 | |
| 41 | - name: Load TOSCA to enable VTN on OpenStack compute nodes |
Matteo Scandolo | 1ed76b8 | 2017-12-05 13:58:22 -0800 | [diff] [blame] | 42 | uri: |
| 43 | url: "{{ xos_tosca_url }}/run" |
| 44 | method: POST |
| 45 | headers: |
| 46 | xos-username: "{{ xos_admin_user }}" |
Zack Williams | fc6b64b | 2017-12-22 15:57:50 -0700 | [diff] [blame] | 47 | xos-password: "{{ head_xos_admin_pass }}" |
Matteo Scandolo | 1ed76b8 | 2017-12-05 13:58:22 -0800 | [diff] [blame] | 48 | body: "{{ lookup('file', head_cord_profile_dir + '/' + item ) }}" |
| 49 | status_code: 200 |
Scott Baker | 253ebc2 | 2018-01-17 16:16:35 -0800 | [diff] [blame] | 50 | register: result |
| 51 | until: result | success |
Scott Baker | 3f24f64 | 2018-01-22 11:38:20 -0800 | [diff] [blame] | 52 | retries: 50 |
| 53 | delay: 5 |
Zack Williams | 2478b30 | 2017-02-14 10:42:55 -0700 | [diff] [blame] | 54 | with_items: |
| 55 | - vtn-service.yaml |
| 56 | - openstack-compute-vtn.yaml |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 57 | tags: |
| 58 | - skip_ansible_lint # TOSCA loading should be idempotent |
| 59 | |