a13d83400f
Changes name of ansible module kolla_docker to kolla_container. Change-Id: I13c676ed0378aa721a21a1300f6054658ad12bc7 Signed-off-by: Martin Hiner <m.hiner@partner.samsung.com>
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
---
|
|
- name: Enable log_bin_trust_function_creators function
|
|
become: true
|
|
kolla_toolbox:
|
|
container_engine: "{{ kolla_container_engine }}"
|
|
module_name: mysql_variables
|
|
module_args:
|
|
login_host: "{{ database_address }}"
|
|
login_port: "{{ database_port }}"
|
|
login_user: "{{ glance_database_shard_root_user }}"
|
|
login_password: "{{ database_password }}"
|
|
variable: log_bin_trust_function_creators
|
|
value: 1
|
|
run_once: True
|
|
delegate_to: "{{ glance_api_hosts[0] }}"
|
|
when:
|
|
- not use_preconfigured_databases | bool
|
|
|
|
- name: Running Glance bootstrap container
|
|
vars:
|
|
glance_api: "{{ glance_services['glance-api'] }}"
|
|
become: true
|
|
kolla_container:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ glance_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_glance"
|
|
restart_policy: oneshot
|
|
volumes: "{{ glance_api.volumes | reject('equalto', '') | list }}"
|
|
run_once: True
|
|
delegate_to: "{{ glance_api_hosts[0] }}"
|
|
|
|
- name: Disable log_bin_trust_function_creators function
|
|
become: true
|
|
kolla_toolbox:
|
|
container_engine: "{{ kolla_container_engine }}"
|
|
module_name: mysql_variables
|
|
module_args:
|
|
login_host: "{{ database_address }}"
|
|
login_port: "{{ database_port }}"
|
|
login_user: "{{ glance_database_shard_root_user }}"
|
|
login_password: "{{ database_password }}"
|
|
variable: log_bin_trust_function_creators
|
|
value: 0
|
|
run_once: True
|
|
delegate_to: "{{ glance_api_hosts[0] }}"
|
|
when:
|
|
- not use_preconfigured_databases | bool
|