56af4ef202
Added ansible role to deploy telegraf Roll out telegraf to all nodes Introduce parameter to toggle deployment of performance monitoring Co-Authored-By: zhubingbing <zhubingbing10@gmail.com> Change-Id: Ia09b20ce65bf557c1a1030eda99df5cc88debd01 Partially-Implements: Blueprint performance-monitoring
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
---
|
|
- name: Ensuring the containers up
|
|
kolla_docker:
|
|
name: "telegraf"
|
|
action: "get_container_state"
|
|
register: container_state
|
|
failed_when: container_state.Running == false
|
|
|
|
- include: config.yml
|
|
|
|
- name: Check the configs
|
|
command: docker exec telegraf /usr/local/bin/kolla_set_configs --check
|
|
changed_when: false
|
|
failed_when: false
|
|
register: check_results
|
|
|
|
# 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: "telegraf"
|
|
action: "get_container_env"
|
|
register: container_envs
|
|
|
|
- name: Remove the containers
|
|
kolla_docker:
|
|
name: "telegraf"
|
|
action: "remove_container"
|
|
register: remove_containers
|
|
when:
|
|
- config_strategy == "COPY_ONCE"
|
|
|
|
- include: start.yml
|
|
when: remove_containers.changed
|
|
|
|
- name: Restart containers
|
|
kolla_docker:
|
|
name: "telegraf"
|
|
action: "restart_container"
|
|
when:
|
|
- config_strategy == 'COPY_ALWAYS'
|