Add fqdn to ingress
This commit is contained in:
parent
cfaea2fda9
commit
356a4a1eef
1 changed files with 7 additions and 5 deletions
|
@ -103,11 +103,13 @@
|
|||
|
||||
(defn-spec generate-ingress-and-cert cp/map-or-seq?
|
||||
[config config?]
|
||||
(ing/generate-ingress-and-cert
|
||||
(merge
|
||||
{:service-name "taiga"
|
||||
:service-port 80}
|
||||
config)))
|
||||
(let [{:keys [fqdn]} config]
|
||||
(ing/generate-ingress-and-cert
|
||||
(merge
|
||||
{:service-name "taiga"
|
||||
:service-port 3000
|
||||
:fqdns [fqdn]}
|
||||
config))))
|
||||
|
||||
; TODO: Check which ones need configuration or authentication information
|
||||
(defn-spec generate-events-rabbitmq-deployment cp/map-or-seq? []
|
||||
|
|
Loading…
Reference in a new issue