Created
June 2, 2023 02:48
-
-
Save developer-sdk/85dd566e28cd78b53f80900baa678c98 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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