a13d83400f
Changes name of ansible module kolla_docker to kolla_container. Change-Id: I13c676ed0378aa721a21a1300f6054658ad12bc7 Signed-off-by: Martin Hiner <m.hiner@partner.samsung.com>
28 lines
766 B
YAML
28 lines
766 B
YAML
---
|
|
- name: Running MariaDB bootstrap container
|
|
vars:
|
|
service_name: "mariadb"
|
|
service: "{{ mariadb_services[service_name] }}"
|
|
become: true
|
|
kolla_container:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
DB_ROOT_PASSWORD: "{{ database_password }}"
|
|
DB_MAX_TIMEOUT: "{{ database_max_timeout }}"
|
|
image: "{{ service.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_mariadb"
|
|
restart_policy: oneshot
|
|
volumes: "{{ service.volumes }}"
|
|
notify:
|
|
- Bootstrap MariaDB cluster
|
|
|
|
- name: Store bootstrap host name into facts
|
|
set_fact:
|
|
bootstrap_host: "{{ inventory_hostname }}"
|