-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: moved JMX Exporter container port to correct container
fix: converted .Values.jmx.exporter.configProperties to templated multiline string
- Loading branch information
1 parent
d52941b
commit f4cb34d
Showing
4 changed files
with
32 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
{{- if .Values.jmx.exporter.enabled -}} | ||
{{- with .Values.jmx.exporter }} | ||
{{- if .enabled }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ template "trino.fullname" . }}-jmx-exporter-config | ||
namespace: {{ .Release.Namespace }} | ||
name: {{ template "trino.fullname" $ }}-jmx-exporter-config | ||
namespace: {{ $.Release.Namespace }} | ||
labels: | ||
{{- include "trino.labels" . | nindent 4 }} | ||
{{- include "trino.labels" $ | nindent 4 }} | ||
app.kubernetes.io/component: jmx | ||
data: | ||
jmx-exporter-config.yaml: |- | ||
{{- .Values.jmx.exporter.configProperties | nindent 4 }} | ||
{{- tpl .configProperties $ | nindent 4 }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters