Mercurial > code > home > repos > pomerium
diff kube/03-volumes.yaml @ 0:6bf643829330
start
author | drewp@bigasterisk.com |
---|---|
date | Sun, 11 Sep 2022 01:24:55 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kube/03-volumes.yaml Sun Sep 11 01:24:55 2022 -0700 @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: autocert-data + labels: + type: local +spec: + storageClassName: manual + hostPath: + path: "/opt/pomerium-autocert" + capacity: + storage: 5Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + claimRef: + namespace: pomerium + name: autocert-data