infrastructure/ansible/roles/forrest/tasks/prometheus.yml

22 lines
569 B
YAML
Raw Normal View History

2021-03-04 14:53:03 +00:00
- name: Create network
docker_network:
name: prometheus
- name: Create prometheus install directory
file:
path: /opt/prometheus
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install prometheus compose file
template:
src: files/docker-compose-prometheus.yml
dest: /opt/prometheus/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: docker-compose -f %s config
notify: restart prometheus
become: true