Kubernetes Persistent Volume Manifest: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 40: | Line 40: | ||
==local== | ==local== | ||
==nodeAffinity== | ==nodeAffinity== | ||
{{Internal|Kubernetes_Storage_Concepts#Node_Affinity|Node Affinity}} |
Revision as of 18:06, 12 December 2019
Internal
Example
apiVersion: v1 kind: PersistentVolume metadata: name: blue spec: accessModes: - RedWriteOnce storageClassName: test capacity: storage: 10Gi persistentVolumeReclaimPolicy: Retain storageClassName: local-storage local: path: /mnt/disks/vol1 nodeAffinity: required: nodeSelectorTerms: - matchExpressions: - key: kubernetes.io/hostname operator: In values: - my-node