Merge "Add configuration for tiller storage"

This commit is contained in:
Zuul 2019-09-26 16:34:43 +00:00 committed by Gerrit Code Review
commit 1d5aba82cf
4 changed files with 8 additions and 0 deletions

View File

@ -152,6 +152,9 @@ spec:
value: {{ .Values.conf.tiller.history_max | quote }}
command:
- /tiller
{{- if .Values.conf.tiller.storage }}
- --storage={{ .Values.conf.tiller.storage | quote }}
{{- end }}
- -logtostderr
- -v
- {{ .Values.conf.tiller.verbosity | quote }}

View File

@ -209,6 +209,7 @@ conf:
port: 44134
verbosity: 5
trace: false
storage: null
namespace: kube-system
# Limit the maximum number of revisions saved per release. 0 for no limit.
history_max: 0

View File

@ -75,6 +75,9 @@ spec:
value: {{ .Values.deployment.tiller_history | quote }}
command:
- /tiller
{{- if .Values.conf.tiller.storage }}
- --storage={{ .Values.conf.tiller.storage | quote }}
{{- end }}
- -logtostderr
- -v
- {{ .Values.conf.tiller.verbosity | quote }}

View File

@ -44,6 +44,7 @@ deployment:
conf:
tiller:
verbosity: 5
storage: null
trace: false
# Note: Defaulting to the (default) kubernetes grace period, as anything
# greater than that will have no effect.