blob: 30abc9109e3703daf4848c54bd11d304b9f81aec [file] [log] [blame]
---
# Copyright 2017-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# roles/create-internetemulator/tasks/main.yml
- name: TOSCA to create internetemulator
template:
src: "internetemulator.yaml.j2"
dest: "/tmp/internetemulator.yaml"
- name: Read internetemulator.yaml
slurp:
src: "/tmp/internetemulator.yaml"
register: slurpfile
- name: Add InternetEmulatorServiceInstance via TOSCA
uri:
url: "{{ xos_tosca_url }}/run"
method: POST
headers:
xos-username: "{{ xos_admin_user }}"
xos-password: "{{ xos_admin_pass }}"
body: "{{ slurpfile['content'] | b64decode }}"
status_code: 200
register: result
until: result is success
retries: 50
delay: 5