Changeset - d846a4754d34
[Not reviewed]
default
2 2 0
drewp@bigasterisk.com - 16 months ago 2023-06-20 05:17:23
drewp@bigasterisk.com
don't mount a volume for autocert
4 files changed with 0 insertions and 41 deletions:
0 comments (0 inline, 0 general)
config/claims.yaml
Show inline comments
 
deleted file
config/kustomization.yaml
Show inline comments
 
bases:
 
  - volumes.yaml
 
  - claims.yaml
 
  - 05-idp-secret.yaml
 
  - 06-postgres.yaml
 
 
 
\ No newline at end of file
config/volumes.yaml
Show inline comments
 
deleted file
upstream/patch.yaml
Show inline comments
 
---
 
apiVersion: apps/v1
 
kind: Deployment
 
metadata:
 
  name: pomerium
 
  namespace: pomerium
 
spec:
 
  template:
 
    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
 
metadata:
 
  name: pomerium-proxy
 
  namespace: pomerium
 
spec:
 
  externalIPs:
 
  # this would be the fastest if we're running on ditto
 
    - 10.5.0.7
 
  # prime forwards to this
 
    - 10.5.0.1
 
  # local dns picks this
 
    - 10.2.0.1
 
---
 
apiVersion: batch/v1
 
kind: Job
 
metadata:
 
  name: pomerium-gen-secrets
 
  namespace: pomerium
 
spec:
 
  template:
 
    spec:
 
      containers:
 
      - name: gen-secrets
 
        image: pomerium/ingress-controller:sha-dd49d67
0 comments (0 inline, 0 general)