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