Skip to content

Commit

Permalink
support helm configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Aireed committed Nov 4, 2024
1 parent 661de43 commit 5bf9a66
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/amoro/templates/amoro-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ data:
{{- if eq .Values.amoroConf.terminal.backend "local" }}
local.spark.sql.iceberg.handle-timestamp-without-timezone: {{ .Values.amoroConf.terminal.icebergHandleTimestampWithoutTimezone }}
{{- end }}
{{- if hasKey .Values.amoroConf.terminal "kyuubiLdapEnabled" }}
kyuubi.ldap.enabled: {{ .Values.amoroConf.terminal.kyuubiLdapEnabled}}
{{- end }}
{{- if eq .Values.amoroConf.terminal.backend "kyuubi" }}
kyuubi.jdbc.url: {{ .Values.amoroConf.terminal.kyuubiJdbcUrl | quote }}
{{- end }}
Expand Down
6 changes: 6 additions & 0 deletions charts/amoro/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,12 @@ amoroConf:
## backend: kyuubi
## kyuubiJdbcUrl: jdbc:hive2://127.0.0.1:10009/

## Kyuubi terminal backend configuration with ldap authentication.
## terminal:
## backend: kyuubi
## kyuubiLdapEnabled: true
## kyuubiJdbcUrl:jdbc:hive2://127.0.0.1:10009/default?user=test;password=test;

## @param amoroDefaults The value (templated string) is used for conf.yaml file
## ref: https://github.com/apache/amoro/blob/master/dist/src/main/amoro-bin/conf/config.yaml
##
Expand Down

0 comments on commit 5bf9a66

Please sign in to comment.