summaryrefslogtreecommitdiffstats
path: root/roles/openshift_persistent_volumes/templates/persistent-volume-claim.yml.j2
blob: 58b3e1c67961b202b100f0c7fb162f9918d5d0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
apiVersion: "v1"
kind: "List"
items:
{% for claim in persistent_volume_claims %}
- kind: "PersistentVolumeClaim"
  metadata:
    name: "{{ claim.name }}"
  spec:
    accessModes: {{ claim.access_modes | to_padded_yaml(2, 2) }}
    resources:
      requests:
        storage: "{{ claim.capacity }}"
{% endfor %}