30be04ea91
Add become to all tasks that use the module "kolla_docker" Change-Id: I4309c4011687b88ec31d739fd8f834fe2326ff10 Partial-Implements: blueprint ansible-specific-task-become
27 lines
725 B
YAML
27 lines
725 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: "never"
|
|
volumes: "{{ service.volumes }}"
|
|
notify:
|
|
- Starting first MariaDB container
|
|
|
|
- set_fact:
|
|
bootstrap_host: "{{ inventory_hostname }}"
|