Skip to content

Commit

Permalink
RANCHER-970 Reason: failed to convert java.lang.String (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
OHaimanov authored Sep 6, 2023
1 parent b05bf6b commit 25a149c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/mod-lists/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions charts/mod-lists/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 25a149c

Please sign in to comment.