From 28fb950588f64c4341886509a62d3b7670578e7a Mon Sep 17 00:00:00 2001 From: AdamDang Date: Mon, 23 Apr 2018 13:05:12 +0800 Subject: [PATCH 1/2] Typo fix in plugins.md "that that"->"that" "that that"->"that" --- docs/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins.md b/docs/plugins.md index 82bcfe33b..3087d1b39 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -183,7 +183,7 @@ If a plugin specifies `useTunnel: true`, Helm will do the following (in order): 5. Close the tunnel The tunnel is removed as soon as the `command` returns. So, for example, a -command cannot background a process and assume that that process will be able +command cannot background a process and assume that process will be able to use the tunnel. ## A Note on Flag Parsing From bcf5688e9a9da64fe5c8580c435bd248ec499e99 Mon Sep 17 00:00:00 2001 From: AdamDang Date: Mon, 23 Apr 2018 13:06:24 +0800 Subject: [PATCH 2/2] Update install.go --- cmd/helm/installer/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/installer/install.go b/cmd/helm/installer/install.go index a45179a48..0abd6774b 100644 --- a/cmd/helm/installer/install.go +++ b/cmd/helm/installer/install.go @@ -73,7 +73,7 @@ func Upgrade(client kubernetes.Interface, opts *Options) error { if _, err := client.ExtensionsV1beta1().Deployments(opts.Namespace).Update(obj); err != nil { return err } - // If the service does not exists that would mean we are upgrading from a Tiller version + // If the service does not exist that would mean we are upgrading from a Tiller version // that didn't deploy the service, so install it. _, err = client.CoreV1().Services(opts.Namespace).Get(serviceName, metav1.GetOptions{}) if apierrors.IsNotFound(err) {