a6cb008c54
Change-Id: Iecbc2fe5fa3391dca5a3cc7e575314b95942114b Co-Authored-By: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
28 lines
758 B
YAML
28 lines
758 B
YAML
---
|
|
- name: Running MariaDB bootstrap container
|
|
vars:
|
|
service_name: "mariadb"
|
|
service: "{{ mariadb_services[service_name] }}"
|
|
become: true
|
|
kolla_docker:
|
|
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: no
|
|
volumes: "{{ service.volumes }}"
|
|
notify:
|
|
- Bootstrap MariaDB cluster
|
|
|
|
- name: Store bootstrap host name into facts
|
|
set_fact:
|
|
bootstrap_host: "{{ inventory_hostname }}"
|