Skip to content

Commit

Permalink
Merge pull request #165 from orkes-io/fix/support-empty-redis-passwor…
Browse files Browse the repository at this point in the history
…d-upgrades

Support empty redis upgrades and human tasks
  • Loading branch information
ystxn authored Dec 2, 2024
2 parents e39d7ea + dc57541 commit e55a9e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions charts/orkes-conductor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion charts/orkes-conductor/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
1 change: 1 addition & 0 deletions charts/orkes-conductor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e55a9e3

Please sign in to comment.