From 8ad1d116c8a2af77ae855454c079a2a650607484 Mon Sep 17 00:00:00 2001 From: GigiaJ Date: Sun, 5 Oct 2025 04:59:53 -0500 Subject: [PATCH] Add note to deployment for now --- iac/src/main/deployments.cljs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/iac/src/main/deployments.cljs b/iac/src/main/deployments.cljs index 86ac6c2..262a4e8 100644 --- a/iac/src/main/deployments.cljs +++ b/iac/src/main/deployments.cljs @@ -5,7 +5,9 @@ [base :as base] [infra.dns :as dns] [k8s.services.nextcloud.service :as nextcloud-service] - [k8s.services.mesite.service :as mesite-service])) + [k8s.services.mesite.service :as mesite-service] + ;; [k8s.services.productive.service :as productive-service] + )) (defn app-list [stack-ref config provider] @@ -14,9 +16,12 @@ (clj->js {:address (.getOutput stack-ref "vaultAddress") :token (.getOutput stack-ref "vaultToken")})) cloudflare-result (dns/setup-dns config vault-provider) - nextcloud-result (nextcloud-service/deploy provider vault-provider) - mesite-result (mesite-service/deploy provider vault-provider)] - {:nextcloud nextcloud-result + ;; Manually make the namespaces and pass them + ;; You could return a map with the namespace and the resource function + ;; Then we can make the namespaces here and still dynamically build the resources + ;; It is the cleanest and most straight forward implementation. + ] + { :cloudflare cloudflare-result})) (defn extended-exports [init]