minor fixes

This commit is contained in:
Michael Jerger 2024-02-17 14:39:31 +01:00
parent a68ff0bd14
commit 6b79f2599d
2 changed files with 5 additions and 5 deletions

View file

@ -77,9 +77,9 @@
[simple-ingress-config simple-ingress?]
(let [{:keys [service-name]} simple-ingress-config
config (merge {:app-name service-name
:ingress-name service-name
:cert-name service-name}
ingress-defaults
simple-ingress-config)]
:ingress-name service-name
:cert-name service-name}
ingress-defaults
simple-ingress-config)]
[(generate-certificate config)
(generate-ingress config)]))

View file

@ -15,7 +15,7 @@
(defn postgres-image?
[input]
(contains? #{"postgres:13" "postgres:14"} input))
(contains? #{"postgres:13" "postgres:14" "postgres:15" "postgres:16"} input))
(s/def ::postgres-db-user cp/bash-env-string?)
(s/def ::postgres-db-password cp/bash-env-string?)