kolla-ansible/ansible/roles/telegraf/tasks/config.yml
Duong Ha-Quang 9965cc46ff Specify 'become' for only neccesary tasks (all other roles)
Add become to only neccesary tasks in roles:

- aodh
- barbican
- bifrost
- ceilometer
- ceph
- chrony
- cinder
- cloudkitty
- collectd
- congress
- designate
- elasticsearch
- etcd
- freezer
- gnocchi
- grafana
- influxdb
- ironic
- iscsi
- karbor
- kibana
- kuryr
- magnum
- manila
- mistral
- mongodb
- multipathd
- murano
- octavia
- panko
- qdrouterd
- rally
- sahara
- searchlight
- senlin
- skydive
- solum
- swift
- swift
- tacker
- telegraf
- tempest
- trove
- vmtp
- watcher
- zun

Change-Id: I6e32d94d4172dd96d09d8609e8a5221ab5586a31
Partial-Implements: blueprint ansible-specific-task-become
2018-03-12 09:37:43 +07: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:
- action != "config"
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ telegraf_services }}"
notify:
- Restart telegraf container