Last active
November 27, 2020 20:28
-
-
Save krol3/61e046fba3c56f927ddeda042581c388 to your computer and use it in GitHub Desktop.
Persistent Volume - aqua-storage
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 | |
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