2021-11-28 10:16:31 +00:00
|
|
|
apiVersion: cert-manager.io/v1
|
|
|
|
kind: ClusterIssuer
|
|
|
|
metadata:
|
|
|
|
name: letsencrypt
|
|
|
|
namespace: cert-manager
|
|
|
|
spec:
|
|
|
|
acme:
|
|
|
|
# You must replace this email address with your own.
|
|
|
|
# Let's Encrypt will use this to contact you about expiring
|
|
|
|
# certificates, and issues related to your account.
|
|
|
|
email: nold@gnu.one
|
|
|
|
#server: https://acme-staging-v02.api.letsencrypt.org/directory
|
|
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
|
|
privateKeySecretRef:
|
|
|
|
# Secret resource that will be used to store the account's private key.
|
|
|
|
name: issuer-account-key
|
|
|
|
# Add a single challenge solver, HTTP01 using nginx
|
|
|
|
solvers:
|
|
|
|
- http01:
|
|
|
|
ingress:
|
2022-01-21 17:08:40 +00:00
|
|
|
class: ingress-external-traefik
|
2022-02-13 17:56:44 +00:00
|
|
|
ingressTemplate:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
environment: external
|
|
|
|
annotations:
|
|
|
|
traefik.ingress.kubernetes.io/frontend-entry-points: "web"
|
|
|
|
kubernetes.io/ingress.class: ingress-external
|