diff --git a/config/claims.yaml b/config/claims.yaml deleted file mode 100644 --- a/config/claims.yaml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - namespace: pomerium - name: autocert-data -spec: - storageClassName: "" - volumeName: "autocert-data" - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 5Gi - \ No newline at end of file diff --git a/config/kustomization.yaml b/config/kustomization.yaml --- a/config/kustomization.yaml +++ b/config/kustomization.yaml @@ -1,6 +1,4 @@ bases: - - volumes.yaml - - claims.yaml - 05-idp-secret.yaml - 06-postgres.yaml \ No newline at end of file diff --git a/config/volumes.yaml b/config/volumes.yaml deleted file mode 100644 --- a/config/volumes.yaml +++ /dev/null @@ -1,18 +0,0 @@ -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 diff --git a/upstream/patch.yaml b/upstream/patch.yaml --- a/upstream/patch.yaml +++ b/upstream/patch.yaml @@ -10,13 +10,6 @@ spec: containers: - name: pomerium image: pomerium/ingress-controller:sha-dd49d67 - volumeMounts: - - mountPath: /data/autocert - name: autocert - - mountPath: /.local - name: autocert - volumes: - - { name: autocert, persistentVolumeClaim: { claimName: autocert-data } } --- apiVersion: v1 kind: Service