pokeapi/Resources/k8s/kustomize/base/volumes/postgres-persistentvolumeclaim.yaml

28 lines
467 B
YAML
Raw Normal View History

2021-05-27 17:25:40 +00:00
apiVersion: v1
2021-06-01 13:17:54 +00:00
kind: PersistentVolume
2021-05-27 17:25:40 +00:00
metadata:
name: postgres-volume0
labels:
type: local
component: postgres
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
2021-06-01 13:17:54 +00:00
hostPath: # TODO: change to a cloud-solution
2021-05-27 17:25:40 +00:00
path: "/mnt/data"
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: postgres-claim0
labels:
component: postgres
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi