Skip to content
Snippets Groups Projects
Commit 7ab6def3 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Add reconfigure for heka"

parents b5ffb450 b950fe23
No related branches found
No related tags found
No related merge requests found
---
- name: Ensuring the heka container is up
kolla_docker:
name: "heka"
action: "get_container_state"
register: container_state
failed_when: container_state.Running == false
- include: config.yml
- name: Checking the heka config
command: docker exec heka /usr/local/bin/kolla_set_configs --check
changed_when: false
failed_when: false
register: check_result
- name: Getting the heka container config strategy
kolla_docker:
name: "heka"
action: "get_container_env"
register: container_env
- name: Removing the heka container
kolla_docker:
name: "heka"
action: "remove_container"
register: remove_container
when:
- config_strategy == "COPY_ONCE" or container_env["KOLLA_CONFIG_STRATEGY"] == "COPY_ONCE"
- check_result.rc == 1
- include: start.yml
when: remove_container.changed
- name: Restarting the heka container
kolla_docker:
name: "heka"
action: "restart_container"
when:
- config_strategy == "COPY_ALWAYS"
- container_env["KOLLA_CONFIG_STRATEGY"] == "COPY_ALWAYS"
- check_result.rc == 1
---
- include: do_reconfigure.yml
serial: "30%"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment