18 lines
460 B
YAML
18 lines
460 B
YAML
|
---
|
||
|
- name: Deploy {{ svc.name }}
|
||
|
tags:
|
||
|
- influxdb
|
||
|
- sensors
|
||
|
block:
|
||
|
- import_tasks: steps/create-service-directory.yml
|
||
|
- import_tasks: steps/template-docker-compose.yml
|
||
|
|
||
|
- name: Template config
|
||
|
ansible.builtin.template:
|
||
|
src: service.yml.j2
|
||
|
dest: "{{ (service_path, 'influxdb.yml') | path_join }}"
|
||
|
mode: "0600"
|
||
|
|
||
|
- import_tasks: steps/template-site-config.yml
|
||
|
- import_tasks: steps/start-service.yml
|