Merge "Apply Cinder rolling upgrade"

This commit is contained in:
Zuul 2018-02-09 03:11:26 +00:00 committed by Gerrit Code Review
commit b28c3efec7
3 changed files with 37 additions and 0 deletions

View File

@ -81,6 +81,9 @@ cinder_database_name: "cinder"
cinder_database_user: "{% if use_preconfigured_databases | bool and use_common_mariadb_user | bool %}{{ database_user }}{% else %}cinder{% endif %}"
cinder_database_address: "{{ database_address }}:{{ database_port }}"
# Max number of object to consider
# when run online data migration
# cinder_max_number_osm: ""
####################
# Docker

View File

@ -1,7 +1,37 @@
---
# NOTE (duonghq): I break pull and config into 2 phases to prevent new version
# of service start if node or process in node crash accidentally.
- include: pull.yml
when: inventory_hostname == groups["cinder-api"][0]
- include: config.yml
when: inventory_hostname == groups["cinder-api"][0]
- include: bootstrap_service.yml
- include: pull.yml
- include: config.yml
- name: Flush handlers
meta: flush_handlers
- name: Running Cinder online schema migration
vars:
cinder_api: "{{ cinder_services['cinder-api'] }}"
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
detach: False
environment:
KOLLA_OSM:
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
MAX_NUMBER: "{{ cinder_max_number_osm | default(10) }}"
image: "{{ cinder_api.image }}"
labels:
BOOTSTRAP:
name: "bootstrap_cinder"
restart_policy: "never"
volumes: "{{ cinder_api.volumes }}"
run_once: True
delegate_to: "{{ groups[cinder_api.group][0] }}"

View File

@ -0,0 +1,4 @@
---
features:
- |
Implement Cinder minimal downtime upgrade procedure.