add all services that have no secret stuff

This commit is contained in:
2022-07-18 19:01:37 +02:00
parent fb6bed8bb0
commit 8dfe5d3587
20 changed files with 622 additions and 0 deletions

View File

@ -0,0 +1,33 @@
---
- name: Copy prometheus configuration
ansible.builtin.copy:
src: prometheus.yml
dest: /home/service-user/prometheus/prometheus.yml
owner: root
group: root
mode: '0644'
- name: Copy alertmanager configuration
ansible.builtin.copy:
src: alertmanager.yml
dest: /home/service-user/alertmanager/config.yml
owner: root
group: root
mode: '0644'
- name: Copy alert rules
ansible.builtin.copy:
src: alert.rules
dest: /home/service-user/prometheus/alert.rules
owner: root
group: root
mode: '0644'
- name: Copy docker-compose configuration
ansible.builtin.copy:
src: docker-compose.yaml
dest: /home/service-user/docker-compose.yaml
owner: service-user
group: service-user
mode: '0644'
...