From 487dc4d70024b5410a2ffb62ad00237c9c103759 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Tue, 17 Dec 2019 13:27:20 -0500 Subject: [PATCH] spelling: kubernetes Signed-off-by: Josh Soref --- pkg/action/action.go | 2 +- pkg/release/status.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/action/action.go b/pkg/action/action.go index f74a25e41..16c5d3546 100644 --- a/pkg/action/action.go +++ b/pkg/action/action.go @@ -66,7 +66,7 @@ var ValidName = regexp.MustCompile("^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])+ // Configuration injects the dependencies that all actions share. type Configuration struct { - // RESTClientGetter is an interface that loads Kuberbetes clients. + // RESTClientGetter is an interface that loads Kubernetes clients. RESTClientGetter RESTClientGetter // Releases stores records of releases. diff --git a/pkg/release/status.go b/pkg/release/status.go index 0e535f9a4..49b0f1544 100644 --- a/pkg/release/status.go +++ b/pkg/release/status.go @@ -25,7 +25,7 @@ const ( StatusUnknown Status = "unknown" // StatusDeployed indicates that the release has been pushed to Kubernetes. StatusDeployed Status = "deployed" - // StatusUninstalled indicates that a release has been uninstalled from Kubermetes. + // StatusUninstalled indicates that a release has been uninstalled from Kubernetes. StatusUninstalled Status = "uninstalled" // StatusSuperseded indicates that this release object is outdated and a newer one exists. StatusSuperseded Status = "superseded"