Created
May 20, 2018 12:09
-
-
Save joatmon08/3ddbe9ed0462f5f9f0b1b86a5854586e to your computer and use it in GitHub Desktop.
20180529-PersistentVolume
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: PersistentVolume | |
| metadata: | |
| name: joatmon08-pv | |
| spec: | |
| storageClassName: gp2 | |
| accessModes: | |
| - ReadWriteOnce | |
| capacity: | |
| storage: 1Gi | |
| persistentVolumeReclaimPolicy: Delete | |
| awsElasticBlockStore: | |
| fsType: ext4 | |
| volumeID: aws://{{ AWS region }}/{{ volume ID }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment