Changeset - 037539eb52c3
[Not reviewed]
default
0 2 0
drewp@bigasterisk.com - 2 years ago 2022-12-13 07:22:03
drewp@bigasterisk.com
change issuer ns to make it work today, but this is questionable. maybe they should be clusterissuers anyway
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
30-cert-manager/51-pomerium-production-issuer.yaml
Show inline comments
 
apiVersion: cert-manager.io/v1
 
kind: Issuer
 
metadata:
 
  name: letsencrypt-prod
 
  namespace: default
 
  namespace: pomerium
 
spec:
 
  acme:
 
    # The ACME server URL
 
    server: https://acme-v02.api.letsencrypt.org/directory
 
    # Email address used for ACME registration
 
    email: drewp@bigasterisk.com
 
    # Name of a secret used to store the ACME account private key
 
    privateKeySecretRef:
 
      name: letsencrypt-prod
 
    # Enable the HTTP-01 challenge provider
 
    solvers:
 
      - http01:
 
          ingress:
 
            class: pomerium
30-cert-manager/51-pomerium-staging-issuer.yaml
Show inline comments
 
apiVersion: cert-manager.io/v1
 
kind: Issuer
 
metadata:
 
  name: letsencrypt-staging
 
  namespace: default
 
  namespace: pomerium
 
spec:
 
  acme:
 
    # The ACME server URL
 
    server: https://acme-staging-v02.api.letsencrypt.org/directory
 
    # Email address used for ACME registration
 
    email: drewp@bigasterisk.com
 
    # Name of a secret used to store the ACME account private key
 
    privateKeySecretRef:
 
      name: letsencrypt-staging
 
    # Enable the HTTP-01 challenge provider
 
    solvers:
 
      - http01:
 
          ingress:
 
            class: pomerium
0 comments (0 inline, 0 general)