blob: 683bc5963fdb617e9dc0fdb63702bc2f54284a5f [file] [log] [blame]
Zack Williams7d1ce412017-10-23 11:21:05 -07001---
Matteo Scandolob76c2572017-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 Scandolob76c2572017-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:
Matteo Scandoloda864802017-11-28 16:46:30 -080020 url: "{{ xos_tosca_url }}/run"
Matteo Scandolob76c2572017-10-02 18:05:58 -070021 method: POST
22 headers:
23 xos-username: "{{ xos_admin_user }}"
24 xos-password: "{{ xos_admin_pass }}"
Matteo Scandoloda864802017-11-28 16:46:30 -080025 body: "{{ lookup('file', head_cord_profile_dir + '/' + item ) }}"
Matteo Scandolob76c2572017-10-02 18:05:58 -070026 status_code: 200
27 with_items: "{{ xos_new_tosca_config_templates }}"
28 tags:
29 - skip_ansible_lint # TOSCA loading should be idempotent
30