Fixed ConfigMap error

This commit is contained in:
Clemens Geibel 2022-08-05 11:07:15 +02:00
parent 8936b488d2
commit 6420387e9f
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@
(cm/replace-all-matching-values-by-new-value "URL" (str "https://" fqdn)) (cm/replace-all-matching-values-by-new-value "URL" (str "https://" fqdn))
(cm/replace-all-matching-values-by-new-value "FROM" mailer-from) (cm/replace-all-matching-values-by-new-value "FROM" mailer-from)
(cm/replace-all-matching-values-by-new-value "MAILER_HOST" mailer-host) (cm/replace-all-matching-values-by-new-value "MAILER_HOST" mailer-host)
(cm/replace-all-matching-values-by-new-value "MAILER_PORT" mailer-port) (cm/replace-all-matching-values-by-new-value "MAILER_PORT" (str mailer-port))
(cm/replace-all-matching-values-by-new-value "WHITELISTDOMAINS" service-domain-whitelist) (cm/replace-all-matching-values-by-new-value "WHITELISTDOMAINS" service-domain-whitelist)
(cm/replace-all-matching-values-by-new-value "NOREPLY" service-noreply-address)))) (cm/replace-all-matching-values-by-new-value "NOREPLY" service-noreply-address))))

View file

@ -4,7 +4,7 @@
:issuer "staging" :issuer "staging"
:mailer-from "test@test.de" :mailer-from "test@test.de"
:mailer-host "test.de" :mailer-host "test.de"
:mailer-port "123" :mailer-port 123
:service-whitelist-domains "test.de" :service-whitelist-domains "test.de"
:service-noreply-address "noreply@test.de" :service-noreply-address "noreply@test.de"
:volume-total-storage-size 6 :volume-total-storage-size 6