4ca2d41762
Second part of patchset: https://review.opendev.org/c/openstack/kolla-ansible/+/799229/ in which was suggested to split patch into smaller ones. THis change adds container_engine to module parameters so when we introduce podman, kolla_toolbox can be used for both engines. Signed-off-by: Ivan Halomi <i.halomi@partner.samsung.com> Co-authored-by: Martin Hiner <m.hiner@partner.samsung.com> Change-Id: Ic2093aa9341a0cb36df8f340cf290d62437504ad
124 lines
3.5 KiB
YAML
124 lines
3.5 KiB
YAML
---
|
|
- name: Start Glance upgrade
|
|
set_fact:
|
|
glance_upgrading: True
|
|
|
|
# Upgrade first node (NEW NODE in the Glance documentation)
|
|
- include_tasks: config.yml
|
|
when: inventory_hostname == glance_api_hosts[0]
|
|
|
|
- include_tasks: stop_service.yml
|
|
when: inventory_hostname == glance_api_hosts[0]
|
|
|
|
- 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 database expand container
|
|
vars:
|
|
glance_api: "{{ glance_services['glance-api'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_UPGRADE:
|
|
GLANCE_DB_EXPAND:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ glance_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_glance"
|
|
restart_policy: no
|
|
volumes: "{{ glance_api.volumes | reject('equalto', '') | list }}"
|
|
run_once: True
|
|
delegate_to: "{{ glance_api_hosts[0] }}"
|
|
|
|
- name: Running Glance database migrate container
|
|
vars:
|
|
glance_api: "{{ glance_services['glance-api'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_UPGRADE:
|
|
GLANCE_DB_MIGRATE:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ glance_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_glance"
|
|
restart_policy: no
|
|
volumes: "{{ glance_api.volumes | reject('equalto', '') | list }}"
|
|
run_once: True
|
|
delegate_to: "{{ glance_api_hosts[0] }}"
|
|
notify:
|
|
- Restart glance-api container
|
|
|
|
# Upgrade remaining node
|
|
- include_tasks: config.yml
|
|
when: inventory_hostname != glance_api_hosts[0]
|
|
|
|
- import_tasks: check-containers.yml
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
|
|
- name: Running Glance database contract container
|
|
vars:
|
|
glance_api: "{{ glance_services['glance-api'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_UPGRADE:
|
|
GLANCE_DB_CONTRACT:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ glance_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_glance"
|
|
restart_policy: no
|
|
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
|
|
|
|
- name: Finish Glance upgrade
|
|
set_fact:
|
|
glance_upgrading: False
|