1822d4890d
Avoid creating an empty volume[0] when not use dev mode for glance. [0]: https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/glance/defaults/main.yml#L14 Change-Id: Ib27489abe20fb562acbc28263f7680e39d9dab44
54 lines
1.6 KiB
YAML
54 lines
1.6 KiB
YAML
---
|
|
- name: Enable log_bin_trust_function_creators function
|
|
vars:
|
|
glance_api: "{{ glance_services['glance-api'] }}"
|
|
kolla_toolbox:
|
|
module_name: mysql_variables
|
|
module_args:
|
|
login_host: "{{ database_address }}"
|
|
login_port: "{{ database_port }}"
|
|
login_user: "{{ database_user }}"
|
|
login_password: "{{ database_password }}"
|
|
variable: log_bin_trust_function_creators
|
|
value: 1
|
|
run_once: True
|
|
delegate_to: "{{ groups[glance_api.group][0] }}"
|
|
when:
|
|
- not use_preconfigured_databases | bool
|
|
|
|
- name: Running Glance bootstrap container
|
|
vars:
|
|
glance_api: "{{ glance_services['glance-api'] }}"
|
|
kolla_docker:
|
|
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: "never"
|
|
volumes: "{{ glance_api.volumes|reject('equalto', '')|list }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[glance_api.group][0] }}"
|
|
|
|
- name: Disable log_bin_trust_function_creators function
|
|
vars:
|
|
glance_api: "{{ glance_services['glance-api'] }}"
|
|
kolla_toolbox:
|
|
module_name: mysql_variables
|
|
module_args:
|
|
login_host: "{{ database_address }}"
|
|
login_port: "{{ database_port }}"
|
|
login_user: "{{ database_user }}"
|
|
login_password: "{{ database_password }}"
|
|
variable: log_bin_trust_function_creators
|
|
value: 0
|
|
run_once: True
|
|
delegate_to: "{{ groups[glance_api.group][0] }}"
|
|
when:
|
|
- not use_preconfigured_databases | bool
|