a13d83400f
Changes name of ansible module kolla_docker to kolla_container. Change-Id: I13c676ed0378aa721a21a1300f6054658ad12bc7 Signed-off-by: Martin Hiner <m.hiner@partner.samsung.com>
24 lines
790 B
YAML
24 lines
790 B
YAML
---
|
|
# TODO(mgoddard): We could use nova-manage db sync --local_cell, otherwise we
|
|
# sync cell0 twice. Should not be harmful without though.
|
|
- name: Running Nova API bootstrap container
|
|
become: true
|
|
vars:
|
|
nova_api: "{{ nova_services['nova-api'] }}"
|
|
kolla_container:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_UPGRADE:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ nova_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "nova_api_bootstrap"
|
|
restart_policy: oneshot
|
|
volumes: "{{ nova_api_bootstrap_default_volumes + nova_api_bootstrap_extra_volumes }}"
|
|
register: bootstrap_result
|
|
changed_when: bootstrap_result.stdout | default("") | length > 0
|
|
run_once: true
|