Zack Williams | 2d325cb | 2017-10-23 11:21:05 -0700 | [diff] [blame] | 1 | --- |
Matteo Scandolo | 3fc188e | 2017-10-02 18:05:58 -0700 | [diff] [blame] | 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 | |
Matteo Scandolo | 3fc188e | 2017-10-02 18:05:58 -0700 | [diff] [blame] | 16 | # xos-config-new-tosca/tasks/main.yml |
| 17 | |
| 18 | - name: Configure XOS with profile specific TOSCA (new Engine) |
| 19 | uri: |
Zack Williams | 2d325cb | 2017-10-23 11:21:05 -0700 | [diff] [blame] | 20 | url: "http://{{ xos_tosca_host }}/xos-tosca/run" |
Matteo Scandolo | 3fc188e | 2017-10-02 18:05:58 -0700 | [diff] [blame] | 21 | 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 | |