Kubernetes - Persistent Storage
Given this PersistentVolume YAML snippet, what is the reclaim policy?
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv-example
spec:
capacity:
storage: 5Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Delete
hostPath:
path: /mnt/data