fa856556d5
do_reconfigure.yml is introduced to use serial directive. But we use it in wrong. Now serial has moved to playbook file. So it is time to remove the do_reconfigure.yml file Closes-Bug: #1628152 Change-Id: I8d42d27e6bc302a0e575b0353956eaef9b2ca9fd
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
---
|
|
- name: Ensuring the containers up
|
|
kolla_docker:
|
|
name: "grafana"
|
|
action: "get_container_state"
|
|
register: container_state
|
|
failed_when: container_state.Running == false
|
|
when: inventory_hostname in groups['grafana']
|
|
|
|
- include: config.yml
|
|
|
|
- name: Check the configs
|
|
command: docker exec grafana /usr/local/bin/kolla_set_configs --check
|
|
changed_when: false
|
|
failed_when: false
|
|
register: check_results
|
|
when: inventory_hostname in groups['grafana']
|
|
|
|
# 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: "grafana"
|
|
action: "get_container_env"
|
|
register: container_envs
|
|
when: inventory_hostname in groups['grafana']
|
|
|
|
- name: Remove the containers
|
|
kolla_docker:
|
|
name: "grafana"
|
|
action: "remove_container"
|
|
register: remove_containers
|
|
when:
|
|
- config_strategy == "COPY_ONCE"
|
|
- inventory_hostname in groups['grafana']
|
|
|
|
- include: start.yml
|
|
when: remove_containers.changed
|
|
|
|
- name: Restart containers
|
|
kolla_docker:
|
|
name: "grafana"
|
|
action: "restart_container"
|
|
when:
|
|
- config_strategy == 'COPY_ALWAYS'
|
|
- inventory_hostname in groups['grafana']
|