17 lines
570 B
YAML
17 lines
570 B
YAML
apiVersion: certmanager.k8s.io/v1alpha1
|
|
kind: ClusterIssuer
|
|
metadata:
|
|
name: letsencrypt
|
|
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: sysadm@zknt.org
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
privateKeySecretRef:
|
|
# Secret resource used to store the account's private key.
|
|
name: leprod-issuer-account-key
|
|
# Enable the HTTP01 challenge mechanism for this Issuer
|
|
http01: {}
|