From b9e96b0f4750e34903f1177606c9b6275401b341 Mon Sep 17 00:00:00 2001 From: Scott Hussey Date: Fri, 9 Mar 2018 11:01:20 -0600 Subject: [PATCH] Enable tracing ability for tiller - High verbosity doesn't log all RPC calls. So now allow tracing to be enabled on a deployment. Change-Id: I12fe2ee9d1685906fcbbb6a417e249b793e8861c --- charts/tiller/templates/deployment-tiller.yaml | 3 +++ charts/tiller/values.yaml | 1 + 2 files changed, 4 insertions(+) diff --git a/charts/tiller/templates/deployment-tiller.yaml b/charts/tiller/templates/deployment-tiller.yaml index de58d2a7..f85cc350 100644 --- a/charts/tiller/templates/deployment-tiller.yaml +++ b/charts/tiller/templates/deployment-tiller.yaml @@ -81,6 +81,9 @@ spec: - -logtostderr - -v - {{ .Values.conf.tiller.verbosity | quote }} +{{- if .Values.conf.tiller.trace }} + - -trace +{{- end }} ports: - containerPort: 44134 name: tiller diff --git a/charts/tiller/values.yaml b/charts/tiller/values.yaml index 1f918ab6..8296954c 100644 --- a/charts/tiller/values.yaml +++ b/charts/tiller/values.yaml @@ -35,6 +35,7 @@ deployment: conf: tiller: verbosity: 5 + trace: false manifests: deployment_tiller: true