Last active
May 24, 2017 18:30
-
-
Save detiber/57d2b559b93c3f5670b76b8ac9d3d03f to your computer and use it in GitHub Desktop.
AWS Default Storage Class
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
--- | |
# See https://kubernetes.io/docs/concepts/storage/persistent-volumes/#storageclasses for further documentation | |
kind: StorageClass | |
apiVersion: storage.k8s.io/v1beta1 | |
metadata: | |
name: ocp | |
annotations: | |
storageclass.beta.kubernetes.io/is-default-class: "true" | |
provisioner: kubernetes.io/aws-ebs | |
parameters: | |
type: gp2 |
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
--- | |
# See https://kubernetes.io/docs/concepts/storage/persistent-volumes/#storageclasses for further documentation | |
kind: StorageClass | |
apiVersion: storage.k8s.io/v1 | |
metadata: | |
name: ocp | |
annotations: | |
storageclass.beta.kubernetes.io/is-default-class: "true" | |
provisioner: kubernetes.io/aws-ebs | |
parameters: | |
type: gp2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment