blob: beec7dbfe34e346f83fc3d0e579757233c69b14a [file] [log] [blame]
Zack Williamsfc6b64b2017-12-22 15:57:50 -07001---
Matteo Scandolo3896c472017-08-01 13:31:42 -07002# 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 Williamsa2763112017-01-03 11:38:38 -070016# compute-node-enable/tasks/main.yml
17
18- name: Load TOSCA to add OpenStack compute nodes
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080019 uri:
20 url: "{{ xos_tosca_url }}/run"
21 method: POST
22 headers:
23 xos-username: "{{ xos_admin_user }}"
Zack Williamsfc6b64b2017-12-22 15:57:50 -070024 xos-password: "{{ head_xos_admin_pass }}"
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080025 body: "{{ lookup('file', head_cord_profile_dir + '/' + item ) }}"
26 status_code: 200
Scott Baker253ebc22018-01-17 16:16:35 -080027 register: result
Zack Williamsf6cc0122018-03-30 16:00:49 -070028 until: result is success
Scott Baker3f24f642018-01-22 11:38:20 -080029 retries: 50
30 delay: 5
Zack Williams2478b302017-02-14 10:42:55 -070031 with_items:
32 - openstack.yaml
33 - openstack-compute.yaml
Zack Williamsa2763112017-01-03 11:38:38 -070034 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 Scandolo1ed76b82017-12-05 13:58:22 -080042 uri:
43 url: "{{ xos_tosca_url }}/run"
44 method: POST
45 headers:
46 xos-username: "{{ xos_admin_user }}"
Zack Williamsfc6b64b2017-12-22 15:57:50 -070047 xos-password: "{{ head_xos_admin_pass }}"
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080048 body: "{{ lookup('file', head_cord_profile_dir + '/' + item ) }}"
49 status_code: 200
Scott Baker253ebc22018-01-17 16:16:35 -080050 register: result
Zack Williamsf6cc0122018-03-30 16:00:49 -070051 until: result is success
Scott Baker3f24f642018-01-22 11:38:20 -080052 retries: 50
53 delay: 5
Zack Williams2478b302017-02-14 10:42:55 -070054 with_items:
55 - vtn-service.yaml
56 - openstack-compute-vtn.yaml
Zack Williamsa2763112017-01-03 11:38:38 -070057 tags:
58 - skip_ansible_lint # TOSCA loading should be idempotent
59