Skip to content

Instantly share code, notes, and snippets.

@krol3
Last active November 27, 2020 20:28
Show Gist options
  • Save krol3/61e046fba3c56f927ddeda042581c388 to your computer and use it in GitHub Desktop.
Save krol3/61e046fba3c56f927ddeda042581c388 to your computer and use it in GitHub Desktop.
Persistent Volume - aqua-storage
apiVersion: v1
items:
- apiVersion: v1
kind: PersistentVolume
metadata:
labels:
app: aqua-database
name: aquadb-pv
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 10Gi
hostPath:
path: /tmp/aquadb/
storageClassName: local-storage
persistentVolumeReclaimPolicy: Recycle
- apiVersion: v1
kind: PersistentVolume
metadata:
labels:
app: aqua-server
name: aquaweb-pv
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 4Gi
hostPath:
path: /tmp/aquaweb/
storageClassName: local-storage
persistentVolumeReclaimPolicy: Recycle
kind: List
metadata:
resourceVersion: ""
selfLink: ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment