Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.45 KB | None | 0 0
  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4.   name: local-pv
  5. spec:
  6.   capacity:
  7.     storage: 100G
  8.   accessModes:
  9.  - ReadWriteOnce
  10.   persistentVolumeReclaimPolicy: Retain
  11.   storageClassName: local-storage
  12.   local:
  13.     path: /mnt/kube-local-storage
  14.   nodeAffinity:
  15.     required:
  16.       nodeSelectorTerms:
  17.       - matchExpressions:
  18.         - key: kubernetes.io/hostname
  19.           operator: In
  20.           values:
  21.          - worker-2.localdomain
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement