summaryrefslogtreecommitdiffstats
path: root/roles/openshift_persistent_volumes/templates/persistent-volume.yml.j2
blob: 5714b6b0d91fba2092c4bb08147a9a9933b67021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
apiVersion: v1
kind: List
items:
{% for volume in persistent_volumes %}
- kind: PersistentVolume
  metadata:
    name: "{{ volume.name }}"
  spec:
    capacity:
      storage: "{{ volume.capacity }}"
    accessModes: {{ volume.access_modes | to_padded_yaml(2, 2) }}
    {{ volume.storage.keys()[0] }}: {{ volume.storage[volume.storage.keys()[0]] | to_padded_yaml(3, 2) }}
{% endfor %}