summaryrefslogtreecommitdiffstats
path: root/roles/openshift_prometheus/tasks/nfs.yaml
blob: 0b45f2ceee4ed7596aefd3c3a21df3e307abdefa (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
36
37
38
39
40
41
42
43
44
---
# Tasks to statically provision NFS volumes
# Include if not using dynamic volume provisioning
- name: Ensure the /exports/ directory exists
  file:
    path: /exports/
    state: directory
    mode: 0755
    owner: root
    group: root

- name: Ensure the prom-pv0X export directories exist
  file:
    path: "/exports/{{ item }}"
    state: directory
    mode: 0777
    owner: nfsnobody
    group: nfsnobody
  with_items: "{{ openshift_prometheus_pv_exports }}"

- name: Ensure the NFS exports for Prometheus PVs exist
  copy:
    src: openshift_prometheus.exports
    dest: /etc/exports.d/openshift_prometheus.exports
  register: nfs_exports_updated

- name: Ensure the NFS export table is refreshed if exports were added
  command: exportfs -ar
  when:
    - nfs_exports_updated.changed


######################################################################
# Create the required Prometheus PVs. Check out these online docs if you
# need a refresher on includes looping with items:
# * http://docs.ansible.com/ansible/playbooks_loops.html#loops-and-includes-in-2-0
# * http://stackoverflow.com/a/35128533
#
# TODO: Handle the case where a PV template is updated in
# openshift-ansible and the change needs to be landed on the managed
# cluster.

- include: create_pvs.yaml
  with_items: "{{ openshift_prometheus_pv_data }}"