From 25a149cdd1da753a782e27e90d76d300cc2bbc4e Mon Sep 17 00:00:00 2001 From: Oleksandr Haimanov <43782513+OHaimanov@users.noreply.github.com> Date: Wed, 6 Sep 2023 12:25:29 +0300 Subject: [PATCH] RANCHER-970 Reason: failed to convert java.lang.String (#54) --- charts/mod-lists/Chart.yaml | 2 +- charts/mod-lists/values.yaml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/charts/mod-lists/Chart.yaml b/charts/mod-lists/Chart.yaml index f44f64a8..72d65bae 100644 --- a/charts/mod-lists/Chart.yaml +++ b/charts/mod-lists/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/mod-lists/values.yaml b/charts/mod-lists/values.yaml index 23868836..156788b7 100644 --- a/charts/mod-lists/values.yaml +++ b/charts/mod-lists/values.yaml @@ -96,23 +96,23 @@ affinity: {} # - name: dumps-volume # mountPath: /dumps -dbMaxPoolSize: 5 -javaOptions: -XX:MaxRAMPercentage=85.0 -maxListSize: 1250000 -listExportBatchSize: 1000 -springTaskPoolSize: 10 +dbMaxPoolSize: "5" +javaOptions: "-XX:MaxRAMPercentage=85.0" +maxListSize: "1250000" +listExportBatchSize: "1000" +springTaskPoolSize: "10" extraEnv: | - name: DB_MAXPOOLSIZE - value: "{{ .Values.dbMaxPoolSize }}" + value: {{ .Values.dbMaxPoolSize }} - name: JAVA_OPTIONS value: {{ .Values.javaOptions }} - name: MAX_LIST_SIZE - value: {{ .Values.maxListSize | quote }} + value: {{ .Values.maxListSize }} - name: LIST_EXPORT_BATCH_SIZE - value: {{ .Values.listExportBatchSize | quote }} + value: {{ .Values.listExportBatchSize }} - name: spring.task.execution.pool.max-size - value: {{ .Values.springTaskPoolSize | quote }} + value: {{ .Values.springTaskPoolSize }} # Enable parameters for DB, Kafka or AWS connection. In value set name of secret dbConnectParameters: db-connect-modules