Rename forrest role to prometheus

Makes organising much simpler
This commit is contained in:
Jake Howard
2024-04-21 19:47:02 +01:00
parent ffbba254fb
commit ee96e6ab08
12 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,21 @@
- name: Create network
docker_network:
name: grafana
- name: Create grafana install directory
file:
path: /opt/grafana
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install grafana compose file
template:
src: files/grafana/docker-compose.yml
dest: /opt/grafana/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: docker-compose -f %s config
notify: restart grafana
become: true