kolla-ansible/ansible/roles/telegraf/tasks/config.yml
Jeffrey Zhang c567055176 Fix ansible warning
- rename action and serial to kolla_ansible and kolla_serial
- use become instead of "sudo <command>" in shell
- Remove quota for failed_when and changed_when in rabbitmq tasks

Change-Id: I78cb60168aaa40bb6439198283546b7faf33917c
Implements: blueprint migrate-to-ansible-2-2-0
2018-05-11 02:54:02 +00:00

81 lines
2.3 KiB
YAML

---
- name: Ensuring config directories exist
file:
path: "{{ node_config_directory }}/{{ item.key }}/config"
state: "directory"
owner: "{{ config_owner_user }}"
group: "{{ config_owner_group }}"
mode: "0770"
become: true
when:
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ telegraf_services }}"
- name: Copying over default config.json files
template:
src: "telegraf.json.j2"
dest: "{{ node_config_directory }}/telegraf/config.json"
mode: "0660"
become: true
register: telegraf_config_jsons
when:
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ telegraf_services }}"
notify:
- Restart telegraf container
- name: Copying over telegraf config file
vars:
service: "{{ telegraf_services['telegraf'] }}"
template:
src: "{{ item }}"
dest: "{{ node_config_directory }}/telegraf/telegraf.conf"
mode: "0660"
become: true
register: telegraf_confs
when:
- inventory_hostname in groups[service.group]
- service.enabled | bool
with_first_found:
- "{{ node_custom_config }}/telegraf/{{ inventory_hostname }}/telegraf.conf"
- "{{ node_custom_config }}/telegraf/telegraf.conf"
- "telegraf.conf.j2"
notify:
- Restart telegraf container
- name: Copying over telegraf plugin files
vars:
service: "{{ telegraf_services['telegraf'] }}"
copy:
src: "{{ item }}"
dest: "{{ node_config_directory }}/telegraf/config"
mode: "0660"
become: true
register: telegraf_plugin
when:
- inventory_hostname in groups[service.group]
- item.value.enabled | bool
with_fileglob:
- "{{ role_path }}/templates/config/*.conf"
notify:
- Restart telegraf container
- name: Check telegraf containers
kolla_docker:
action: "compare_container"
common_options: "{{ docker_common_options }}"
name: "{{ item.value.container_name }}"
image: "{{ item.value.image }}"
volumes: "{{ item.value.volumes }}"
pid_mode: "{{ item.value.pid_mode }}"
register: check_telegraf_containers
when:
- kolla_action != "config"
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ telegraf_services }}"
notify:
- Restart telegraf container