summaryrefslogtreecommitdiffstats
path: root/roles/openshift_metrics/tasks/pre_install.yaml
blob: 262acd54650aff2eae905cac0ec70548b71acbce (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
---
- name: Check that hawkular_metrics_hostname is set
  fail: msg='the openshift_metrics_hawkular_hostname variable is required'
  when: openshift_metrics_hawkular_hostname is not defined

- name: Check the value of openshift_metrics_cassandra_storage_type
  fail:
    msg: >
      openshift_metrics_cassandra_storage_type ({{ openshift_metrics_cassandra_storage_type }})
      is invalid, must be one of: emptydir, pv, dynamic
  when:
  - openshift_metrics_cassandra_storage_type not in openshift_metrics_cassandra_storage_types
  - "not {{ openshift_metrics_heapster_standalone | bool }}"

- name: create certificate output directory
  file:
    path: "{{ openshift_metrics_certs_dir }}"
    state: directory
    mode: 0700

- name: list existing secrets
  command: >
    {{ openshift.common.client_binary }} -n {{ openshift_metrics_project }}
    --config={{ mktemp.stdout }}/admin.kubeconfig
    get secrets -o name
  register: metrics_secrets
  changed_when: false