Files @ 9d3a9e524ad3
Branch filter:

Location: pomerium/kube/03-volumes.yaml

drewp@bigasterisk.com
fuss with ns and stuff to get it working. forward all (over http) to nginx at first
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