From 37e5f76f9e5d4caa43a0dff0524aedc06a9432d8 Mon Sep 17 00:00:00 2001 From: Justin Scott Date: Tue, 27 Jun 2017 10:21:30 -0700 Subject: [PATCH] Capitalize 'helm' text that was missed. --- cmd/helm/init_test.go | 2 +- cmd/helm/reset.go | 4 ++-- cmd/helm/reset_test.go | 6 +++--- docs/helm/helm_reset.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cmd/helm/init_test.go b/cmd/helm/init_test.go index 45d8266f3..55b62d284 100644 --- a/cmd/helm/init_test.go +++ b/cmd/helm/init_test.go @@ -67,7 +67,7 @@ func TestInitCmd(t *testing.T) { if !actions[1].Matches("create", "services") { t.Errorf("unexpected action: %v, expected create service", actions[1]) } - expected := "Tiller (the helm server-side component) has been installed into your Kubernetes Cluster." + expected := "Tiller (the Helm server-side component) has been installed into your Kubernetes Cluster." if !strings.Contains(buf.String(), expected) { t.Errorf("expected %q, got %q", expected, buf.String()) } diff --git a/cmd/helm/reset.go b/cmd/helm/reset.go index 95a9ca953..f73632ebf 100644 --- a/cmd/helm/reset.go +++ b/cmd/helm/reset.go @@ -32,7 +32,7 @@ import ( ) const resetDesc = ` -This command uninstalls Tiller (the helm server-side component) from your +This command uninstalls Tiller (the Helm server-side component) from your Kubernetes Cluster and optionally deletes local configuration in $HELM_HOME (default ~/.helm/) ` @@ -114,7 +114,7 @@ func (d *resetCmd) run() error { } } - fmt.Fprintln(d.out, "Tiller (the helm server-side component) has been uninstalled from your Kubernetes Cluster.") + fmt.Fprintln(d.out, "Tiller (the Helm server-side component) has been uninstalled from your Kubernetes Cluster.") return nil } diff --git a/cmd/helm/reset_test.go b/cmd/helm/reset_test.go index a0a325396..ca97d1d2b 100644 --- a/cmd/helm/reset_test.go +++ b/cmd/helm/reset_test.go @@ -55,7 +55,7 @@ func TestResetCmd(t *testing.T) { if len(actions) != 2 { t.Errorf("Expected 2 actions, got %d", len(actions)) } - expected := "Tiller (the helm server-side component) has been uninstalled from your Kubernetes Cluster." + expected := "Tiller (the Helm server-side component) has been uninstalled from your Kubernetes Cluster." if !strings.Contains(buf.String(), expected) { t.Errorf("expected %q, got %q", expected, buf.String()) } @@ -89,7 +89,7 @@ func TestResetCmd_removeHelmHome(t *testing.T) { if len(actions) != 2 { t.Errorf("Expected 2 actions, got %d", len(actions)) } - expected := "Tiller (the helm server-side component) has been uninstalled from your Kubernetes Cluster." + expected := "Tiller (the Helm server-side component) has been uninstalled from your Kubernetes Cluster." if !strings.Contains(buf.String(), expected) { t.Errorf("expected %q, got %q", expected, buf.String()) } @@ -160,7 +160,7 @@ func TestReset_forceFlag(t *testing.T) { if len(actions) != 2 { t.Errorf("Expected 2 actions, got %d", len(actions)) } - expected := "Tiller (the helm server-side component) has been uninstalled from your Kubernetes Cluster." + expected := "Tiller (the Helm server-side component) has been uninstalled from your Kubernetes Cluster." if !strings.Contains(buf.String(), expected) { t.Errorf("expected %q, got %q", expected, buf.String()) } diff --git a/docs/helm/helm_reset.md b/docs/helm/helm_reset.md index e3a9de9ed..78218a4e9 100644 --- a/docs/helm/helm_reset.md +++ b/docs/helm/helm_reset.md @@ -6,7 +6,7 @@ uninstalls Tiller from a cluster -This command uninstalls Tiller (the helm server-side component) from your +This command uninstalls Tiller (the Helm server-side component) from your Kubernetes Cluster and optionally deletes local configuration in $HELM_HOME (default ~/.helm/) @@ -40,4 +40,4 @@ helm reset ### SEE ALSO * [helm](helm.md) - The Helm package manager for Kubernetes. -###### Auto generated by spf13/cobra on 26-Jun-2017 +###### Auto generated by spf13/cobra on 27-Jun-2017