
Murano sometimes fails to deploy due to delay in haproxy identifying started API services. Instead of waiting for all the services and checking existance of core library via VIP deploy task should connect to one of the services directly for testing service status and for package import. Change-Id: I2934579edc910e81730dd89dbd8ff9eb11a2cc1c Closes-Bug: #1634531
68 lines
2.5 KiB
YAML
68 lines
2.5 KiB
YAML
---
|
|
- name: Starting murano-engine container
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ murano_engine_image_full }}"
|
|
name: "murano_engine"
|
|
volumes:
|
|
- "{{ node_config_directory }}/murano-engine/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
when: inventory_hostname in groups['murano-engine']
|
|
|
|
- name: Starting murano-api container
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
image: "{{ murano_api_image_full }}"
|
|
name: "murano_api"
|
|
volumes:
|
|
- "{{ node_config_directory }}/murano-api/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
when: inventory_hostname in groups['murano-api']
|
|
|
|
- name: Waiting for Murano API service to be ready on first node
|
|
wait_for:
|
|
host: "{{ api_interface_address }}"
|
|
port: "{{ murano_api_port }}"
|
|
connect_timeout: 1
|
|
timeout: 60
|
|
run_once: True
|
|
register: check_murano_port
|
|
until: check_murano_port | success
|
|
retries: 10
|
|
delay: 6
|
|
delegate_to: "{{ groups['murano-api'][0] }}"
|
|
|
|
- name: Checking if Murano core library package exists
|
|
command: "docker exec murano_api murano \
|
|
--os-username admin \
|
|
--os-password {{ keystone_admin_password }} \
|
|
--os-project-name admin \
|
|
--os-auth-url \
|
|
{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v3 \
|
|
--murano-url \
|
|
{{ admin_protocol }}://{{ api_interface_address }}:{{ murano_api_port }} \
|
|
package-list"
|
|
register: status
|
|
changed_when: False
|
|
run_once: True
|
|
delegate_to: "{{ groups['murano-api'][0] }}"
|
|
|
|
- name: Importing Murano core library package
|
|
command: "docker exec murano_api murano \
|
|
--os-username admin \
|
|
--os-password {{ keystone_admin_password }} \
|
|
--os-project-name admin \
|
|
--os-auth-url \
|
|
{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v3 \
|
|
--murano-url \
|
|
{{ admin_protocol }}://{{ api_interface_address }}:{{ murano_api_port }} \
|
|
package-import --is-public /io.murano.zip"
|
|
run_once: True
|
|
delegate_to: "{{ groups['murano-api'][0] }}"
|
|
when:
|
|
- status.stdout.find("io.murano") == -1
|