From 2ecbe81a6295526148fbcaeddc29e07986cf2556 Mon Sep 17 00:00:00 2001
From: Arie Peterson <arie@greenhost.nl>
Date: Fri, 31 May 2024 11:39:43 +0200
Subject: [PATCH] Reload on change to app/oauthclient configmaps

---
 backend/cliapp/cliapp/cli.py  |  2 +-
 backend/helpers/kubernetes.py | 30 ++++++++++++++++++++----------
 2 files changed, 21 insertions(+), 11 deletions(-)

diff --git a/backend/cliapp/cliapp/cli.py b/backend/cliapp/cliapp/cli.py
index 38d5a20f..ca93b5e1 100644
--- a/backend/cliapp/cliapp/cli.py
+++ b/backend/cliapp/cliapp/cli.py
@@ -55,7 +55,7 @@ def create_app(slug, name, external_url = None):
     :param extenal-url: if set, it marks this as an external app and 
                         configures the url
     """
-    current_app.logger.info(f"Creating app definition: {name} ({slug}")
+    current_app.logger.info(f"Creating app definition: {name} ({slug})")
 
     obj = App(name=name, slug=slug)
 
diff --git a/backend/helpers/kubernetes.py b/backend/helpers/kubernetes.py
index de35673a..2c49d6ec 100644
--- a/backend/helpers/kubernetes.py
+++ b/backend/helpers/kubernetes.py
@@ -436,17 +436,17 @@ def debounce(timeout: float):
     return decorator
 
 def watch_dashboard_config(app, reload):
+    # Number of seconds to wait before reloading in case more secrets show up.
+    # In particular this prevents us from reloading once for every
+    # secret that exists at startup in succession.
+    debounce_timeout = 1
+    @debounce(debounce_timeout)
+    def debounced_reload():
+        reload()
     w = watch.Watch()
     api_instance = client.CoreV1Api(api_client.ApiClient())
-    def p():
+    def watch_scim_secrets():
         with app.app_context():
-            # Number of seconds to wait before reloading in case more secrets show up.
-            # In particular this prevents us from reloading once for every
-            # secret that exists at startup in succession.
-            debounce_timeout = 1
-            @debounce(debounce_timeout)
-            def debounced_reload():
-                reload()
             for event in w.stream(
                     api_instance.list_namespaced_secret,
                     'flux-system',
@@ -455,8 +455,18 @@ def watch_dashboard_config(app, reload):
                 ):
                 current_app.logger.info(f"{event['type']} SCIM config secret: {event['object'].metadata.name}")
                 debounced_reload()
-    thread = threading.Thread(target=p)
-    thread.start()
+    threading.Thread(target=watch_scim_secrets).start()
+    def watch_dashboard_configmaps():
+        with app.app_context():
+            for event in w.stream(
+                    api_instance.list_namespaced_config_map,
+                    'flux-system',
+                    label_selector="stackspin.net/dashboard-config=1",
+                    watch=True
+                ):
+                current_app.logger.info(f"{event['type']} dashboard config configmap: {event['object'].metadata.name}")
+                debounced_reload()
+    threading.Thread(target=watch_dashboard_configmaps).start()
 
 def check_condition(status):
     """
-- 
GitLab