From fe398b3cf0095c40c0e3f72dff0e270d6f9ae3bf Mon Sep 17 00:00:00 2001 From: Warren Bailey Date: Mon, 13 Apr 2026 16:57:31 +0100 Subject: [PATCH 1/4] test message for deployment --- frontstage/create_app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontstage/create_app.py b/frontstage/create_app.py index 909bc36d3..f7bb990e5 100644 --- a/frontstage/create_app.py +++ b/frontstage/create_app.py @@ -45,6 +45,8 @@ def create_app_object(): logger = wrap_logger(logging.getLogger(__name__)) logger.debug("App configuration set", config=app_config) + logger.debug("Test message for deployment purposes") + # If any required variables are not set abort launch for var in app.config["NON_DEFAULT_VARIABLES"]: if not app.config[var]: From e7e7375e1a6a47ab495a75456b7c0608b2980265 Mon Sep 17 00:00:00 2001 From: ras-rm-pr-bot Date: Mon, 13 Apr 2026 16:01:13 +0000 Subject: [PATCH 2/4] auto patch increment --- _infra/helm/frontstage/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_infra/helm/frontstage/Chart.yaml b/_infra/helm/frontstage/Chart.yaml index e2fa05fbe..4ca8a0a64 100644 --- a/_infra/helm/frontstage/Chart.yaml +++ b/_infra/helm/frontstage/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 2.5.87 +version: 2.5.88 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 2.5.87 +appVersion: 2.5.88 From a3471a3ae9a94c31bc804a67549989cb30526f1f Mon Sep 17 00:00:00 2001 From: Warren Bailey Date: Tue, 14 Apr 2026 09:43:24 +0100 Subject: [PATCH 3/4] enabling debug logging --- _infra/helm/frontstage/templates/deployment.yaml | 2 ++ _infra/helm/frontstage/values.yaml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/_infra/helm/frontstage/templates/deployment.yaml b/_infra/helm/frontstage/templates/deployment.yaml index 753667bb7..ef3ca55f2 100644 --- a/_infra/helm/frontstage/templates/deployment.yaml +++ b/_infra/helm/frontstage/templates/deployment.yaml @@ -62,6 +62,8 @@ spec: successThreshold: 1 timeoutSeconds: 5 env: + - name: LOGGING_LEVEL + value : "{{ .Values.loggingLevel }}" - name: APP_SETTINGS value: {{ .Values.config }} - name: ACCOUNT_SERVICE_URL diff --git a/_infra/helm/frontstage/values.yaml b/_infra/helm/frontstage/values.yaml index 9157f5686..abb6e77dd 100644 --- a/_infra/helm/frontstage/values.yaml +++ b/_infra/helm/frontstage/values.yaml @@ -104,3 +104,6 @@ profiler: secureMessage: version: both + +logging: + level: DEBUG \ No newline at end of file From 22e14bf3fd3782e0ad04771a78c45bcd27b55bb2 Mon Sep 17 00:00:00 2001 From: Warren Bailey Date: Tue, 14 Apr 2026 13:13:34 +0100 Subject: [PATCH 4/4] fix deployment --- _infra/helm/frontstage/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_infra/helm/frontstage/templates/deployment.yaml b/_infra/helm/frontstage/templates/deployment.yaml index ef3ca55f2..f9729f8d3 100644 --- a/_infra/helm/frontstage/templates/deployment.yaml +++ b/_infra/helm/frontstage/templates/deployment.yaml @@ -63,7 +63,7 @@ spec: timeoutSeconds: 5 env: - name: LOGGING_LEVEL - value : "{{ .Values.loggingLevel }}" + value : "{{ .Values.logging.level }}" - name: APP_SETTINGS value: {{ .Values.config }} - name: ACCOUNT_SERVICE_URL