Skip to content

Commit

Permalink
fix(helm): fix missing whitespace in JAVA_TOOL_OPTIONS
Browse files Browse the repository at this point in the history
Signed-off-by: Mathias Maes <mathias.maes@aloxy.io>
  • Loading branch information
WatcherWhale committed Oct 5, 2023
1 parent dae3369 commit 9a7e583
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 9a7e583

Please sign in to comment.