Skip to content

Instantly share code, notes, and snippets.

@gosuri
Created April 25, 2017 02:00
Show Gist options
  • Save gosuri/3a25e8c183fe8f522b7763366a4a05e1 to your computer and use it in GitHub Desktop.
Save gosuri/3a25e8c183fe8f522b7763366a4a05e1 to your computer and use it in GitHub Desktop.
redis pv
---
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