mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-08-06 10:00:07 +00:00
13 lines
332 B
YAML
13 lines
332 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim # Create PVC
|
|
metadata:
|
|
name: postgres-pvc # Sets name of PV
|
|
labels:
|
|
app: postgres # Defines app to create PVC for
|
|
spec:
|
|
storageClassName: openebs-host
|
|
accessModes:
|
|
- ReadWriteOnce # Sets read and write access
|
|
resources:
|
|
requests:
|
|
storage: 10Gi # Sets PVC's size |