Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support empty redis upgrades and human tasks #165

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading