Skip to content
Snippets Groups Projects
Commit 42737338 authored by James McCarthy's avatar James McCarthy
Browse files

Import the Murano applications libary as part of setup

This applications package is useful to have in place,
import io.murano.applications along with the core package.

Change-Id: I819eebe2deae2d1ff0375a2dd39a33f50817bb83
parent e2301f07
No related branches found
No related tags found
No related merge requests found
...@@ -65,3 +65,17 @@ ...@@ -65,3 +65,17 @@
delegate_to: "{{ groups['murano-api'][0] }}" delegate_to: "{{ groups['murano-api'][0] }}"
when: when:
- status.stdout.find("io.murano") == -1 or action == "upgrade" - status.stdout.find("io.murano") == -1 or action == "upgrade"
- name: Importing Murano applications library package
command: >
docker exec murano_api murano
--os-username {{ openstack_auth.username }}
--os-password {{ keystone_admin_password }}
--os-project-name {{ openstack_auth.project_name }}
--os-auth-url {{ keystone_admin_url }}
--murano-url {{ admin_protocol }}://{{ api_interface_address }}:{{ murano_api_port }}
package-import --exists-action u --is-public /io.murano.applications.zip
run_once: True
delegate_to: "{{ groups['murano-api'][0] }}"
when:
- status.stdout.find("io.murano.applications") == -1 or action == "upgrade"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment