From dc57541df4bc0bed0e8b77cddeaa0dcb6d11787b Mon Sep 17 00:00:00 2001 From: Yong Sheng Tan Date: Fri, 29 Nov 2024 15:35:58 +0800 Subject: [PATCH] Support empty redis upgrades and human tasks --- charts/orkes-conductor/templates/deployment.yaml | 2 ++ charts/orkes-conductor/templates/secret.yaml | 2 +- charts/orkes-conductor/values.yaml | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/charts/orkes-conductor/templates/deployment.yaml b/charts/orkes-conductor/templates/deployment.yaml index b6562c1..d322335 100644 --- a/charts/orkes-conductor/templates/deployment.yaml +++ b/charts/orkes-conductor/templates/deployment.yaml @@ -274,6 +274,8 @@ spec: value: {{ .Values.app.workflowExecutionLockEnabled | quote }} - name: conductor.api.ratelimiter.enabled value: {{ .Values.app.apiRateLimiterEnabled | quote }} + - name: conductor.human-task.enabled + value: {{ .Values.app.humanTasksEnabled | default "false" | quote }} - name: LOCAL_HOST_IP valueFrom: fieldRef: diff --git a/charts/orkes-conductor/templates/secret.yaml b/charts/orkes-conductor/templates/secret.yaml index e1b2bcb..8c17647 100644 --- a/charts/orkes-conductor/templates/secret.yaml +++ b/charts/orkes-conductor/templates/secret.yaml @@ -21,7 +21,7 @@ metadata: type: Opaque data: redisHosts: {{ $redisHosts | b64enc }} - redisPassword: {{ .Values.redis.password | default "" | b64enc }} + redisPassword: {{ .Values.redis.password | default "" | b64enc | quote }} postgresPassword: {{ .Values.postgres.password | default "" | b64enc }} securityJwtSecret: {{ .Values.security.jwt.secret | default "" | b64enc }} {{- if .Values.security.auth0 }} diff --git a/charts/orkes-conductor/values.yaml b/charts/orkes-conductor/values.yaml index a4cc188..2479fab 100644 --- a/charts/orkes-conductor/values.yaml +++ b/charts/orkes-conductor/values.yaml @@ -37,6 +37,7 @@ app: maxTaskInWorkflowExecution: "1000" maxTaskInWorkflowDefinition: "1000" apiRateLimiterEnabled: "true" + humanTasksEnabled: "false" # documentStoreS3BucketName: Required if archiveStoreType = s3 documentStoreS3BucketName: # documentStoreAzureBlobContainerName, documentStoreAzureBlobEndpoint: Required if archiveStoreType = azureblob