17 lines
415 B
YAML
17 lines
415 B
YAML
|
---
|
||
|
- name: Deploy {{ svc.name }}
|
||
|
tags:
|
||
|
- telegraf
|
||
|
- monitoring
|
||
|
block:
|
||
|
- import_tasks: steps/create-service-directory.yml
|
||
|
- import_tasks: steps/template-docker-compose.yml
|
||
|
|
||
|
- name: Template config
|
||
|
ansible.builtin.template:
|
||
|
src: telegraf.conf.j2
|
||
|
dest: "{{ (service_path, 'telegraf.conf') | path_join }}"
|
||
|
mode: "0664"
|
||
|
|
||
|
- import_tasks: steps/start-service.yml
|