Created
June 9, 2025 13:43
-
-
Save thearyanahmed/5e99030fb99ebed1c06b073684c51898 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: storage.k8s.io/v1 | |
kind: StorageClass | |
metadata: | |
name: nfs-csi | |
provisioner: nfs.csi.k8s.io | |
parameters: | |
server: 10.0.2.4 | |
share: /srv/nfs | |
reclaimPolicy: Delete | |
volumeBindingMode: Immediate | |
mountOptions: | |
- hard | |
- nfsvers=4.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment