This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
services/_ansible/roles/influxdb/tasks/main.yml

18 lines
460 B
YAML
Raw Normal View History

2023-06-17 11:24:02 +00:00
---
- 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