From b666b3ddeb086196fc086a371bf3be094ae858a1 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Thu, 5 Jan 2017 15:08:26 -0800 Subject: [PATCH] fix(tiller): s/POD_NAMESPACE/TILLER_NAMESPACE/ --- cmd/tiller/tiller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tiller/tiller.go b/cmd/tiller/tiller.go index 79c31bc82..f71b10f93 100644 --- a/cmd/tiller/tiller.go +++ b/cmd/tiller/tiller.go @@ -139,7 +139,7 @@ func start(c *cobra.Command, args []string) { // namespace returns the namespace of tiller func namespace() string { - if ns := os.Getenv("POD_NAMESPACE"); ns != "" { + if ns := os.Getenv("TILLER_NAMESPACE"); ns != "" { return ns }