changeset 26:d846a4754d34

don't mount a volume for autocert
author drewp@bigasterisk.com
date Mon, 19 Jun 2023 22:17:23 -0700
parents 41b47733baf8
children 0f6176ce0b46
files config/claims.yaml config/kustomization.yaml config/volumes.yaml upstream/patch.yaml
diffstat 4 files changed, 0 insertions(+), 41 deletions(-) [+]
line wrap: on
line diff
--- a/config/claims.yaml	Thu Jun 08 11:27:18 2023 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
--- a/config/kustomization.yaml	Thu Jun 08 11:27:18 2023 -0700
+++ b/config/kustomization.yaml	Mon Jun 19 22:17:23 2023 -0700
@@ -1,6 +1,4 @@
 bases:
-  - volumes.yaml
-  - claims.yaml
   - 05-idp-secret.yaml
   - 06-postgres.yaml
  
\ No newline at end of file
--- a/config/volumes.yaml	Thu Jun 08 11:27:18 2023 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
--- a/upstream/patch.yaml	Thu Jun 08 11:27:18 2023 -0700
+++ b/upstream/patch.yaml	Mon Jun 19 22:17:23 2023 -0700
@@ -10,13 +10,6 @@
       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