blob: 5862f3e688562f0d4d3b357eecf361fdf28cda21 [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
Zack Williams2478b302017-02-14 10:42:55 -070027 with_items:
28 - openstack.yaml
29 - openstack-compute.yaml
Zack Williamsa2763112017-01-03 11:38:38 -070030 tags:
31 - skip_ansible_lint # TOSCA loading should be idempotent
32
33- name: Pause to work around race in VTN or ONOS synchronizers
34 pause:
35 seconds: 20
36
37- name: Load TOSCA to enable VTN on OpenStack compute nodes
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080038 uri:
39 url: "{{ xos_tosca_url }}/run"
40 method: POST
41 headers:
42 xos-username: "{{ xos_admin_user }}"
Zack Williamsfc6b64b2017-12-22 15:57:50 -070043 xos-password: "{{ head_xos_admin_pass }}"
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080044 body: "{{ lookup('file', head_cord_profile_dir + '/' + item ) }}"
45 status_code: 200
Zack Williams2478b302017-02-14 10:42:55 -070046 with_items:
47 - vtn-service.yaml
48 - openstack-compute-vtn.yaml
Zack Williamsa2763112017-01-03 11:38:38 -070049 tags:
50 - skip_ansible_lint # TOSCA loading should be idempotent
51