From 66dede904395f68c9740b899c298db229d444f03 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Thu, 5 May 2016 17:07:41 -0600 Subject: [PATCH] fix(helm): add svc definition for 'helm init' Closes #648. --- pkg/client/install.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkg/client/install.go b/pkg/client/install.go index 8a582f2d1..a6047aaf4 100644 --- a/pkg/client/install.go +++ b/pkg/client/install.go @@ -85,4 +85,20 @@ spec: name: tiller imagePullPolicy: Always --- +apiVersion: v1 +kind: Service +metadata: + labels: + app: helm + name: tiller + name: tiller-svc + namespace: helm +spec: + selector: + app: helm + name: tiller + ports: + - protocol: TCP + port: 44134 + targetPort: 44134 `