pv.yaml.j2 336 B

12345678910111213141516
  1. ---
  2. apiVersion: v1
  3. kind: PersistentVolume
  4. metadata:
  5. name: {{ resource_name }}
  6. spec:
  7. capacity:
  8. storage: {{ storage_size }}
  9. {% if storage_class %}
  10. storageClassName: {{ storage_class }}
  11. {% endif %}
  12. accessModes:
  13. - {{ access_mode }}
  14. persistentVolumeReclaimPolicy: {{ reclaim_policy }}
  15. hostPath:
  16. path: {{ host_path }}