kolla/ansible/roles/murano/tasks/bootstrap_service.yml
Allen Gao 54aa896735 Playbook for upgrade murano
Change-Id: Iffb12c8e22724ba779e4ce80204710513875e725
Partially-Implements: blueprint upgrade-kolla
Implements: blueprint upgrade-murano
2016-02-02 15:03:08 +08:00

18 lines
537 B
YAML

---
- name: Running Murano bootstrap container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
detach: False
environment:
KOLLA_BOOTSTRAP:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
image: "{{ murano_api_image_full }}"
labels:
BOOTSTRAP:
name: "bootstrap_murano"
restart_policy: "never"
volumes: "{{ node_config_directory }}/murano-api/:{{ container_config_directory }}/:ro"
run_once: True
delegate_to: "{{ groups['murano-api'][0] }}"