From 954821fcd3eb92acfe374b60e3fcd2194ebef8c8 Mon Sep 17 00:00:00 2001 From: Marco Sabatini Date: Wed, 15 Jan 2025 16:55:55 +0100 Subject: [PATCH] fix(helm): comment workerThreads --- charts/kestra/values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/kestra/values.yaml b/charts/kestra/values.yaml index 8b93402..ce4d549 100644 --- a/charts/kestra/values.yaml +++ b/charts/kestra/values.yaml @@ -125,22 +125,22 @@ deployments: kind: Deployment command: "server worker{{ if $.Values.deployments.worker.workerThreads }} --thread={{ .Values.deployments.worker.workerThreads }}{{ end }}" terminationGracePeriodSeconds: 60 - # By default, we start a number of threads of two times the number of available processors, use 'workerThreads' to configure a different value. - workerThreads: 128 readinessProbe: {} livenessProbe: {} startupProbe: {} + # By default, we start a number of threads of two times the number of available processors, use 'workerThreads' to configure a different value. + #workerThreads: 128 standalone: enabled: true kind: Deployment command: "server standalone{{ if $.Values.deployments.standalone.workerThreads }} --worker-thread={{ .Values.deployments.standalone.workerThreads }}{{ end }}" terminationGracePeriodSeconds: 60 - # By default, we start a number of threads of two times the number of available processors, use 'workerThreads' to configure a different value. - #workerThreads: 128 readinessProbe: {} livenessProbe: {} startupProbe: {} + # By default, we start a number of threads of two times the number of available processors, use 'workerThreads' to configure a different value. + #workerThreads: 128 # EE only - Define additional group of workers. # Must be used in addition to default workers (in standalone or separate worker deployment).