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

[workflow-manager] Fix max task payload size #328

Merged
merged 3 commits into from
Oct 31, 2023
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
13 changes: 4 additions & 9 deletions charts/workflow-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: workflow-manager
description: A Helm chart for Kubernetes deploying conductor-server and workflow-proxy
icon: https://avatars.githubusercontent.com/u/23452093?s=200&v=4
type: application
version: 2.0.0
version: 2.0.1
appVersion: "2.1.3"
maintainers:
- name: FRINX
Expand All @@ -21,13 +21,8 @@ annotations:
- name: schellar
image: frinx/schellar:3.0.0
artifacthub.io/changes: |
- kind: removed
description: Remove elasticsearch
- kind: fixed
description: Fix max task payload size values
links:
- name: GitHub PR
url: https://github.com/FRINXio/helm-charts/pull/253
- kind: removed
description: Remove config.properties
links:
- name: GitHub PR
url: https://github.com/FRINXio/helm-charts/pull/253
url: https://github.com/FRINXio/helm-charts/pull/328
4 changes: 2 additions & 2 deletions charts/workflow-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ conductorExtraEnv:
CONDUCTOR_APP_MAXWORKFLOWOUTPUTPAYLOADSIZETHRESHOLD: 102400
CONDUCTOR_APP_TASKINPUTPAYLOADSIZETHRESHOLD: 85
CONDUCTOR_APP_TASKOUTPUTPAYLOADSIZETHRESHOLD: 85
CONDUCTOR_APP_MAXTASKINPUTPAYLOADSIZETHRESHOLD: 85
CONDUCTOR_APP_MAXTASKOUTPUTPAYLOADSIZETHRESHOLD: 85
CONDUCTOR_APP_MAXTASKINPUTPAYLOADSIZETHRESHOLD: 102400
CONDUCTOR_APP_MAXTASKOUTPUTPAYLOADSIZETHRESHOLD: 102400
# PostgreSQL External Payload Storage variables
CONDUCTOR_EXTERNALPAYLOADSTORAGE_TYPE: postgres
CONDUCTOR_EXTERNALPAYLOADSTORAGE_POSTGRES_CONDUCTORURL: http://workflow-proxy:8088/proxy
Expand Down