Compare commits

..

3 commits

Author SHA1 Message Date
ad82277e96 Fix monitoring not receiving config 2024-08-09 15:06:38 +02:00
05039420bd Update deps 2024-08-09 15:06:21 +02:00
d59f40a961 Don't use deprecated func 2024-08-08 14:37:43 +02:00
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@
:dependencies [[org.clojure/tools.cli "1.1.230"]
[ch.qos.logback/logback-classic "1.5.6"
:exclusions [com.sun.mail/javax.mail]]
[org.slf4j/jcl-over-slf4j "2.0.14"]
[org.slf4j/jcl-over-slf4j "2.0.15"]
[com.github.clj-easy/graal-build-time "1.0.5"]]}}
:release-tasks [["test"]
["vcs" "assert-committed"]

View file

@ -54,4 +54,4 @@
(postgres/generate-auth config auth)
[(kc/generate-secret config auth)]
(when (and (contains? auth :mon-auth) (contains? config :mon-cfg))
(mon/generate-auth (:mon-config config) (:mon-auth auth)))))))
(mon/generate-auth (:mon-cfg config) (:mon-auth auth)))))))

View file

@ -60,5 +60,5 @@
(->
(yaml/load-as-edn "keycloak/deployment.yaml")
(cm/replace-all-matching "NAMESPACE" namespace)
(cm/replace-all-matching-values-by-new-value "FQDN" fqdn))))
(cm/replace-all-matching "FQDN" fqdn))))