From 1a78f2f3361462b7b16ce82adeea2669f4d7a0c7 Mon Sep 17 00:00:00 2001 From: Kavitha P Date: Wed, 25 Aug 2021 16:40:38 +0530 Subject: [PATCH] [CDS] Enable workflow status CDS blueprints processors helm charts changes to include a flag to enable workflow status persistence Change-Id: Ieaf55c97bffc6f6ea3e8ea0bcde600e3b1cc037e Signed-off-by: Kavitha P Issue-ID: OOM-2803 --- .../cds-blueprints-processor/resources/config/application.properties | 3 +++ kubernetes/cds/components/cds-blueprints-processor/values.yaml | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties b/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties index a3d32a9a03..ea799e2119 100755 --- a/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties +++ b/kubernetes/cds/components/cds-blueprints-processor/resources/config/application.properties @@ -159,3 +159,6 @@ management.endpoint.health.show-details=always blueprintprocessor.k8s.plugin.username=unused blueprintprocessor.k8s.plugin.password=unused blueprintprocessor.k8s.plugin.url=http://multicloud-k8s:9015/ + +#Workflow audit store configuration +blueprintsprocessor.workflow.self-service-api.audit.storeEnable={{ .Values.workflow.storeEnabled }} diff --git a/kubernetes/cds/components/cds-blueprints-processor/values.yaml b/kubernetes/cds/components/cds-blueprints-processor/values.yaml index 71f934fbe5..98121fdf9e 100755 --- a/kubernetes/cds/components/cds-blueprints-processor/values.yaml +++ b/kubernetes/cds/components/cds-blueprints-processor/values.yaml @@ -184,3 +184,7 @@ serviceAccount: nameOverride: cds-blueprints-processor roles: - read + +# workflow store flag +workflow: + storeEnabled: false -- 2.16.6