Skip to content

Instantly share code, notes, and snippets.

@prashanth-sams
Created September 2, 2019 09:12
Show Gist options
  • Save prashanth-sams/458737e7b71257527836025942db84bb to your computer and use it in GitHub Desktop.
Save prashanth-sams/458737e7b71257527836025942db84bb to your computer and use it in GitHub Desktop.
Persistent Volume
---
apiVersion: "v1"
kind: "PersistentVolume"
metadata:
name: data-pv
spec:
capacity:
storage: {{ .Values.capacity }}
accessModes:
- {{ .Values.accessMode }}
persistentVolumeReclaimPolicy: Retain
storageClassName: {{ .Values.storageClassName }}
hostPath:
path: "/custom_folder/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment