Created
April 25, 2017 02:00
-
-
Save gosuri/3a25e8c183fe8f522b7763366a4a05e1 to your computer and use it in GitHub Desktop.
redis pv
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: PersistentVolume | |
metadata: | |
name: redispv | |
spec: | |
capacity: | |
storage: 8Gi | |
accessModes: | |
- ReadWriteOnce | |
persistentVolumeReclaimPolicy: Retain | |
awsElasticBlockStore: | |
volumeID: vol-06c41fd7e6a3a5eb6 | |
fsType: ext4 | |
--- | |
kind: PersistentVolumeClaim | |
apiVersion: v1 | |
metadata: | |
name: redis-claim | |
spec: | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: | |
storage: 8Gi | |
volumeName: redispv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment