fixing clusterissuer value merge issue

This commit is contained in:
2024-06-13 12:06:25 +10:00
parent e058624244
commit 4c2d60830c

View File

@@ -60,14 +60,14 @@ spec:
ACME: ACME:
- name: letsencrypt - name: letsencrypt
# Used for both logging in to the DNS provider AND ACME registration # Used for both logging in to the DNS provider AND ACME registration
email: ${email} email: "${email}"
server: 'https://acme-v02.api.letsencrypt.org/directory' server: 'https://acme-v02.api.letsencrypt.org/directory'
# Used primarily for the SCALE GUI # Used primarily for the SCALE GUI
customServer: 'https://acme-v02.api.letsencrypt.org/directory' customServer: 'https://acme-v02.api.letsencrypt.org/directory'
# Options: HTTP01, cloudflare, route53, akamai, digitalocean, rfc2136, acmedns # Options: HTTP01, cloudflare, route53, akamai, digitalocean, rfc2136, acmedns
type: "cloudflare" type: "cloudflare"
# for cloudflare # for cloudflare
cfapitoken: ${cloudflare_api_token} cfapitoken: "${cloudflare_api_token}"
clusterCertificates: clusterCertificates:
# Namespaces in which the certificates must be available # Namespaces in which the certificates must be available
@@ -78,5 +78,5 @@ spec:
enabled: true enabled: true
certificateIssuer: ACME certificateIssuer: ACME
hosts: hosts:
- ${cluster_cert_domain} - "${cluster_cert_domain}"
- "${cluster_cert_domain_wildcard}" - "${cluster_cert_domain_wildcard}"