streams-manifests/cert-cluster-issuer/cluster-issuer.yaml

22 lines
679 B
YAML
Raw Permalink Normal View History

2024-10-16 07:37:58 +00:00
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt
namespace: kube-system
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: drive@sunet.se
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
# Secret resource that will be used to store the account's private key.
name: letsencrypt-account-key
# Add a single challenge solver, HTTP01 using nginx
solvers:
- http01:
ingress:
2024-10-16 08:44:34 +00:00
ingressClassName: nginx
2024-10-16 07:37:58 +00:00
class: public