From 74bb38e31c83a8f654692ded30d7644de0b5a4ef Mon Sep 17 00:00:00 2001 From: Edward Cheng Date: Thu, 13 Jun 2024 11:45:03 +1000 Subject: [PATCH] fixing clusterissuer value merge issue --- kubernetes/apps/clusterissuer/app/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kubernetes/apps/clusterissuer/app/release.yaml b/kubernetes/apps/clusterissuer/app/release.yaml index 5664b46..aaac1f3 100644 --- a/kubernetes/apps/clusterissuer/app/release.yaml +++ b/kubernetes/apps/clusterissuer/app/release.yaml @@ -60,14 +60,14 @@ spec: ACME: - name: letsencrypt # Used for both logging in to the DNS provider AND ACME registration - email: ${email | quote} + email: ${email} server: 'https://acme-v02.api.letsencrypt.org/directory' # Used primarily for the SCALE GUI customServer: 'https://acme-v02.api.letsencrypt.org/directory' # Options: HTTP01, cloudflare, route53, akamai, digitalocean, rfc2136, acmedns type: "cloudflare" # for cloudflare - cfapitoken: ${cloudflare_api_token | quote} + cfapitoken: ${cloudflare_api_token} clusterCertificates: # Namespaces in which the certificates must be available @@ -78,5 +78,5 @@ spec: enabled: true certificateIssuer: ACME hosts: - - ${cluster_cert_domain | quote} - - ${cluster_cert_domain_wildcard | quote} \ No newline at end of file + - ${cluster_cert_domain} + - ${cluster_cert_domain_wildcard} \ No newline at end of file