Reconfigure glance service

Change-Id: Ic9e98941711a5fd1b8546de58d278a0b00cf350b
Partially-implements: bp kolla-reconfig
This commit is contained in:
Jeffrey Zhang 2016-02-29 11:08:19 +08:00
parent 2e7b6eeac0
commit 75ce1e447d
2 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,69 @@
---
- name: Ensuring the containers up
kolla_docker:
name: "{{ item.name }}"
action: "get_container_state"
register: container_state
failed_when: container_state.Running == false
when: inventory_hostname in groups[item.group]
with_items:
- { name: glance_api, group: glance-api }
- { name: glance_registry, group: glance-registry }
- include: config.yml
- name: Check the configs
command: docker exec {{ item.name }} /usr/local/bin/kolla_set_configs --check
changed_when: false
failed_when: false
register: check_results
when: inventory_hostname in groups[item.group]
with_items:
- { name: glance_api, group: glance-api }
- { name: glance_registry, group: glance-registry }
# NOTE(jeffrey4l): when config_strategy == 'COPY_ALWAYS'
# and container env['KOLLA_CONFIG_STRATEGY'] == 'COPY_ONCE',
# just remove the container and start again
- name: Containers config strategy
kolla_docker:
name: "{{ item.name }}"
action: "get_container_env"
register: container_envs
when: inventory_hostname in groups[item.group]
with_items:
- { name: glance_api, group: glance-api }
- { name: glance_registry, group: glance-registry }
- name: Remove the containers
kolla_docker:
name: "{{ item[0]['name'] }}"
action: "remove_container"
register: remove_containers
when:
- config_strategy == "COPY_ONCE" or item[1]['KOLLA_CONFIG_STRATEGY'] == 'COPY_ONCE'
- item[2]['rc'] == 1
- inventory_hostname in groups[item[0]['group']]
with_together:
- [{ name: glance_api, group: glance-api },
{ name: glance_registry, group: glance-registry }]
- container_envs.results
- check_results.results
- include: start.yml
when: remove_containers.changed
- name: Restart containers
kolla_docker:
name: "{{ item[0]['name'] }}"
action: "restart_container"
when:
- config_strategy == 'COPY_ALWAYS'
- item[1]['KOLLA_CONFIG_STRATEGY'] != 'COPY_ONCE'
- item[2]['rc'] == 1
- inventory_hostname in groups[item[0]['group']]
with_together:
- [{ name: glance_api, group: glance-api },
{ name: glance_registry, group: glance-registry }]
- container_envs.results
- check_results.results

View File

@ -1 +1,5 @@
---
- include: do_reconfigure.yml
serial: "30%"
when: inventory_hostname in groups['glance-api']
or inventory_hostname in groups['glance-registry']