forked from helm/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[stable/metabase] Add log4jProperties (helm#11171)
* Adding log4jProperties Signed-off-by: Francisco Guimarães <[email protected]> * Bump Chart version and metabase version Signed-off-by: Francisco Guimarães <[email protected]> * Adding necessary JAVA_TOOL_OPTIONS option when using log4jProperties Signed-off-by: Francisco Guimarães <[email protected]> * Replace javaToolOptions by javaOpts Signed-off-by: Francisco Guimarães <[email protected]> * Fix deployment chart Signed-off-by: Francisco Guimarães <[email protected]>
- Loading branch information
1 parent
af554de
commit 06c63b5
Showing
5 changed files
with
47 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ template "metabase.fullname" . }}-config | ||
labels: | ||
app: {{ template "metabase.name" . }} | ||
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} | ||
release: {{ .Release.Name }} | ||
heritage: {{ .Release.Service }} | ||
data: | ||
{{- if .Values.log4jProperties }} | ||
log4j.properties: | ||
{{ toYaml .Values.log4jProperties | indent 4}} | ||
{{- 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