Add fqdn to ingress

This commit is contained in:
erik 2023-08-29 13:24:46 +02:00
parent cfaea2fda9
commit 356a4a1eef

View file

@ -103,11 +103,13 @@
(defn-spec generate-ingress-and-cert cp/map-or-seq? (defn-spec generate-ingress-and-cert cp/map-or-seq?
[config config?] [config config?]
(let [{:keys [fqdn]} config]
(ing/generate-ingress-and-cert (ing/generate-ingress-and-cert
(merge (merge
{:service-name "taiga" {:service-name "taiga"
:service-port 80} :service-port 3000
config))) :fqdns [fqdn]}
config))))
; TODO: Check which ones need configuration or authentication information ; TODO: Check which ones need configuration or authentication information
(defn-spec generate-events-rabbitmq-deployment cp/map-or-seq? [] (defn-spec generate-events-rabbitmq-deployment cp/map-or-seq? []