Merge "Add configurations for helm/tiller sql storage backend"
This commit is contained in:
commit
240039e064
@ -170,6 +170,10 @@ spec:
|
||||
- /tiller
|
||||
{{- if .Values.conf.tiller.storage }}
|
||||
- --storage={{ .Values.conf.tiller.storage }}
|
||||
{{- if and (eq .Values.conf.tiller.storage "sql") (.Values.conf.tiller.sql_dialect) (.Values.conf.tiller.sql_connection) }}
|
||||
- --sql-dialect={{ .Values.conf.tiller.sql_dialect }}
|
||||
- --sql-connection-string={{ .Values.conf.tiller.sql_connection }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
- -listen
|
||||
- ":{{ .Values.conf.tiller.port }}"
|
||||
|
@ -211,6 +211,9 @@ conf:
|
||||
verbosity: 5
|
||||
trace: false
|
||||
storage: null
|
||||
# Only postgres is supported so far
|
||||
sql_dialect: postgres
|
||||
sql_connection: null
|
||||
namespace: kube-system
|
||||
# Limit the maximum number of revisions saved per release. 0 for no limit.
|
||||
history_max: 0
|
||||
|
@ -98,6 +98,10 @@ spec:
|
||||
- /tiller
|
||||
{{- if .Values.conf.tiller.storage }}
|
||||
- --storage={{ .Values.conf.tiller.storage }}
|
||||
{{- if and (eq .Values.conf.tiller.storage "sql") (.Values.conf.tiller.sql_dialect) (.Values.conf.tiller.sql_connection) }}
|
||||
- --sql-dialect={{ .Values.conf.tiller.sql_dialect }}
|
||||
- --sql-connection-string={{ .Values.conf.tiller.sql_connection }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
- -listen
|
||||
- ":{{ .Values.conf.tiller.port }}"
|
||||
|
@ -45,6 +45,9 @@ conf:
|
||||
tiller:
|
||||
verbosity: 5
|
||||
storage: null
|
||||
# Only postgres is supported so far
|
||||
sql_dialect: postgres
|
||||
sql_connection: null
|
||||
trace: false
|
||||
# Note: Defaulting to the (default) kubernetes grace period, as anything
|
||||
# greater than that will have no effect.
|
||||
|
Loading…
x
Reference in New Issue
Block a user