From 1b5c99385396b84d46a196a9a1c7e2f20fdf9ade Mon Sep 17 00:00:00 2001 From: Michal Rostecki Date: Wed, 12 Oct 2016 14:40:59 +0200 Subject: [PATCH] fix(helm): remove unused consts from client Const variables defined in client.go weren't used anywhere. Ref #953 --- pkg/helm/client.go | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pkg/helm/client.go b/pkg/helm/client.go index 16fb2e118..bdf687933 100644 --- a/pkg/helm/client.go +++ b/pkg/helm/client.go @@ -24,20 +24,6 @@ import ( rls "k8s.io/helm/pkg/proto/hapi/services" ) -const ( - // HelmHostEnvVar is the $HELM_HOST envvar - HelmHostEnvVar = "HELM_HOST" - - // HelmHomeEnvVar is the $HELM_HOME envvar - HelmHomeEnvVar = "HELM_HOME" - - // DefaultHelmHost is the default tiller server host address. - DefaultHelmHost = ":44134" - - // DefaultHelmHome is the default $HELM_HOME envvar value - DefaultHelmHome = "$HOME/.helm" -) - // Client manages client side of the helm-tiller protocol type Client struct { opts options