Created
May 20, 2018 12:09
-
-
Save joatmon08/10c398e77d704c049df24da37a676966 to your computer and use it in GitHub Desktop.
20180520-PersistentVolumeClaim
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: v1 | |
| kind: PersistentVolumeClaim | |
| metadata: | |
| labels: | |
| app: hello-stateful | |
| name: joatmon08-pvc | |
| spec: | |
| accessModes: | |
| - ReadWriteOnce | |
| resources: | |
| requests: | |
| storage: 1Gi | |
| storageClassName: gp2 | |
| volumeName: joatmon08-pv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment