blob: b2534dca81fd19b4050466ef4d1159dea44072a3 [file] [log] [blame]
Matteo Scandolo3fc188e2017-10-02 18:05:58 -07001
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
16
17---
18# xos-config-new-tosca/tasks/main.yml
19
20- name: Configure XOS with profile specific TOSCA (new Engine)
21 uri:
22 url: "http://{{headnode}}/xos-tosca/run"
23 method: POST
24 headers:
25 xos-username: "{{ xos_admin_user }}"
26 xos-password: "{{ xos_admin_pass }}"
27 body: "{{ lookup('file','/opt/cord_profile/' + item ) }}"
28 status_code: 200
29 with_items: "{{ xos_new_tosca_config_templates }}"
30 tags:
31 - skip_ansible_lint # TOSCA loading should be idempotent
32