Skip to content

Commit

Permalink
Merge pull request #1759 from WatcherWhale/fix-extra-jvm-options
Browse files Browse the repository at this point in the history
fix(helm): fix missing whitespace in JAVA_TOOL_OPTIONS
  • Loading branch information
thjaeckle committed Oct 5, 2023
2 parents 3f95f97 + 9a7e583 commit f878de5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deployment/helm/ditto/Chart.yaml
Expand Up @@ -16,7 +16,7 @@ description: |
A digital twin is a virtual, cloud based, representation of his real world counterpart
(real world “Things”, e.g. devices like sensors, smart heating, connected cars, smart grids, EV charging stations etc).
type: application
version: 3.3.8 # chart version is effectively set by release-job
version: 3.3.9 # chart version is effectively set by release-job
appVersion: nightly
keywords:
- iot-chart
Expand Down
Expand Up @@ -126,7 +126,7 @@ spec:
-XX:InitialRAMPercentage={{ .Values.connectivity.jvm.heapRamPercentage }}
-XX:MaxGCPauseMillis={{ .Values.connectivity.jvm.maxGcPauseMillis }}
{{ .Values.connectivity.additionalJvmOptions }}
{{- .Values.global.pekkoOptions }}
{{ .Values.global.pekkoOptions }}
{{- if .Values.global.logging.customConfigFile.enabled }}
-Dlogback.configurationFile=/opt/ditto/{{ .Values.global.logging.customConfigFile.fileName }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/ditto/templates/gateway-deployment.yaml
Expand Up @@ -127,7 +127,7 @@ spec:
-XX:InitialRAMPercentage={{ .Values.gateway.jvm.heapRamPercentage }}
-XX:MaxGCPauseMillis={{ .Values.gateway.jvm.maxGcPauseMillis }}
{{ .Values.gateway.additionalJvmOptions }}
{{- .Values.global.pekkoOptions }}
{{ .Values.global.pekkoOptions }}
{{- if .Values.global.logging.customConfigFile.enabled }}
-Dlogback.configurationFile=/opt/ditto/{{ .Values.global.logging.customConfigFile.fileName }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion deployment/helm/ditto/templates/things-deployment.yaml
Expand Up @@ -126,7 +126,7 @@ spec:
-XX:InitialRAMPercentage={{ .Values.things.jvm.heapRamPercentage }}
-XX:MaxGCPauseMillis={{ .Values.things.jvm.maxGcPauseMillis }}
{{ .Values.things.additionalJvmOptions }}
{{- .Values.global.pekkoOptions }}
{{ .Values.global.pekkoOptions }}
{{- if .Values.global.logging.customConfigFile.enabled }}
-Dlogback.configurationFile=/opt/ditto/{{ .Values.global.logging.customConfigFile.fileName }}
{{- end }}
Expand Down
Expand Up @@ -126,7 +126,7 @@ spec:
-XX:InitialRAMPercentage={{ .Values.thingsSearch.jvm.heapRamPercentage }}
-XX:MaxGCPauseMillis={{ .Values.thingsSearch.jvm.maxGcPauseMillis }}
{{ .Values.thingsSearch.additionalJvmOptions }}
{{- .Values.global.pekkoOptions }}
{{ .Values.global.pekkoOptions }}
{{- if .Values.global.logging.customConfigFile.enabled }}
-Dlogback.configurationFile=/opt/ditto/{{ .Values.global.logging.customConfigFile.fileName }}
{{- end }}
Expand Down

0 comments on commit f878de5

Please sign in to comment.