diff options
Diffstat (limited to 'yaml/pvcs')
| -rw-r--r-- | yaml/pvcs/pgdata.yaml | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/yaml/pvcs/pgdata.yaml b/yaml/pvcs/pgdata.yaml new file mode 100644 index 0000000..7580530 --- /dev/null +++ b/yaml/pvcs/pgdata.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: +  name: pgdata-pvc +spec: +  accessModes: +    - ReadWriteOnce +  resources: +    requests: +      storage: 1Gi  |