Skip to content

Instantly share code, notes, and snippets.

@afreeland
Created April 30, 2018 19:48
Show Gist options
  • Save afreeland/3223e31477be860ad0211598dc3dd623 to your computer and use it in GitHub Desktop.
Save afreeland/3223e31477be860ad0211598dc3dd623 to your computer and use it in GitHub Desktop.
K8s: PersistedVolumes bare metal NFS
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv0001
spec:
capacity:
storage: 5Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Recycle
storageClassName: slow
nfs:
# MMH-TABDEV:/PVC
path: /PVC/1
server: 10.168.4.215
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv0002
spec:
capacity:
storage: 5Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Recycle
storageClassName: slow
nfs:
# MMH-TABDEV:/PVC
path: /PVC/2
server: 10.168.4.215
---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment