From 6d785dc38517bff01247274cebda8acc84f01488 Mon Sep 17 00:00:00 2001 From: marcsello Date: Mon, 26 Apr 2021 00:18:58 +0200 Subject: [PATCH] Added debug option --- Chart.yaml | 2 +- templates/job_orchestrator_deployment.yaml | 1 + values.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Chart.yaml b/Chart.yaml index 81d47af..ad01eae 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -14,7 +14,7 @@ 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: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. diff --git a/templates/job_orchestrator_deployment.yaml b/templates/job_orchestrator_deployment.yaml index 5ea5e04..048305c 100644 --- a/templates/job_orchestrator_deployment.yaml +++ b/templates/job_orchestrator_deployment.yaml @@ -56,3 +56,4 @@ data: DRY_RUN: "{{ .Values.singleURSimControl.dry_run }}" REDIS_URL: "redis://controller-redis/0" SENTRY_DSN: "{{ .Values.singleURSimControl.sentry_dsn }}" + DEBUG: "{{ .Values.singleURSimControl.debug }}" diff --git a/values.yaml b/values.yaml index db3162d..e283344 100644 --- a/values.yaml +++ b/values.yaml @@ -8,3 +8,4 @@ programService: singleURSimControl: sentry_dsn: "" dry_run: "True" + debug: "False"