From d37c1c59a44276df1046222bff7be21bdcf98615 Mon Sep 17 00:00:00 2001 From: Kamil Burzynski Date: Tue, 14 Aug 2018 22:24:30 +0200 Subject: [PATCH] Update client.go --- pkg/kube/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kube/client.go b/pkg/kube/client.go index c89fa649b..cf7fe4e03 100644 --- a/pkg/kube/client.go +++ b/pkg/kube/client.go @@ -277,7 +277,7 @@ func (c *Client) Update(namespace string, originalReader, targetReader io.Reader originalInfo := original.Get(info) if originalInfo == nil { kind := info.Mapping.GroupVersionKind.Kind - return fmt.Errorf("no %s with the name %q found in previous release, but it already exist in kubernetes", kind, info.Name) + return fmt.Errorf("no %s with the name %q found in previous release, but it already exists in kubernetes", kind, info.Name) } if err := updateResource(c, info, originalInfo.Object, force, recreate); err != nil {