summaryrefslogtreecommitdiffstats
path: root/roles/openshift_prometheus/tasks/main.yaml
blob: 66d65a3f2a24963f5da518993e712f428855a84d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
- name: Set default image variables based on openshift_deployment_type
  include_vars: "{{ item }}"
  with_first_found:
    - "{{ openshift_deployment_type }}.yml"
    - "default_images.yml"

- name: Create temp directory for doing work in on target
  command: mktemp -td openshift-prometheus-ansible-XXXXXX
  register: mktemp
  changed_when: False

- set_fact:
    tempdir: "{{ mktemp.stdout }}"

- name: Create templates subdirectory
  file:
    state: directory
    path: "{{ tempdir }}/{{ item }}"
    mode: 0755
  changed_when: False
  with_items:
    - templates

- include_tasks: install_prometheus.yaml
  when: openshift_prometheus_state == 'present'

- include_tasks: uninstall_prometheus.yaml
  when: openshift_prometheus_state == 'absent'

- name: Delete temp directory
  file:
    name: "{{ tempdir }}"
    state: absent
  changed_when: False