From 7eee4e63c8ff96e4a2b12a71e57893d609dde37f Mon Sep 17 00:00:00 2001 From: Colt McNealy Date: Sun, 9 Jun 2024 08:31:37 -0700 Subject: [PATCH] Adds LHO_THREADPOOL_SIZE config --- charts/lh-operator/templates/deployment.yaml | 2 ++ charts/lh-operator/values.yaml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/charts/lh-operator/templates/deployment.yaml b/charts/lh-operator/templates/deployment.yaml index 96190ec..aeefbb7 100644 --- a/charts/lh-operator/templates/deployment.yaml +++ b/charts/lh-operator/templates/deployment.yaml @@ -55,6 +55,8 @@ spec: value: "{{ .Values.gatewayApi.enabled }}" - name: LOG_LEVEL value: "{{ .Values.logLevel }}" + - name: LHO_THREADPOOL_SIZE + value: "{{ .Values.reconciler.threadPoolSize }}" {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/lh-operator/values.yaml b/charts/lh-operator/values.yaml index 059a1e9..46f6a48 100644 --- a/charts/lh-operator/values.yaml +++ b/charts/lh-operator/values.yaml @@ -76,6 +76,9 @@ tolerations: [] affinity: {} +reconciler: + threadPoolSize: 8 + helm: addHelmLabels: true