Created
July 2, 2025 14:20
-
-
Save dmc5179/c77cabc9909cc2acd352f74133b0378b to your computer and use it in GitHub Desktop.
NetApp Trident Configuration Examples
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
kind: PersistentVolumeClaim | |
apiVersion: v1 | |
metadata: | |
name: basic-thin-pvc | |
spec: | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: | |
storage: 5Gi | |
storageClassName: ontap-gold |
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: ontap-gold | |
provisioner: csi.trident.netapp.io | |
parameters: | |
backendType: "ontap-nas" | |
media: "ssd" | |
provisioningType: "thin" | |
snapshots: "true" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment