Skip to content

Instantly share code, notes, and snippets.

@developer-sdk
Created June 2, 2023 02:48
Show Gist options
  • Save developer-sdk/85dd566e28cd78b53f80900baa678c98 to your computer and use it in GitHub Desktop.
Save developer-sdk/85dd566e28cd78b53f80900baa678c98 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv-mysql
spec:
capacity:
storage: 50Gi
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: local-storage
local:
path: /home/user/ubuntu
nodeAffinity:
required:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/hostname
operator: In
values:
- node-name-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment