Add influxdb to ansible

This commit is contained in:
Tobias Reisinger 2023-06-17 13:24:02 +02:00
parent 96fd62dc3d
commit 2500d672fb
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
12 changed files with 102 additions and 87 deletions
_ansible/tasks/steps

View file

@ -2,3 +2,6 @@
ansible.builtin.command:
cmd: docker compose up -d
chdir: "{{ service_path }}"
when: "'local-dev' != inventory_hostname"
register: cmd_result
changed_when: "cmd_result.stderr | regex_search('Started$')"