From f9d0860bbdad22fb3dbda9d4e548c3fb727558ec Mon Sep 17 00:00:00 2001 From: Peter Rifel Date: Fri, 27 Dec 2019 17:41:55 -0800 Subject: [PATCH] Fix link printed in k8s version deprecation message --- upup/pkg/fi/cloudup/apply_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upup/pkg/fi/cloudup/apply_cluster.go b/upup/pkg/fi/cloudup/apply_cluster.go index 980665ace3..cf8a898e2f 100644 --- a/upup/pkg/fi/cloudup/apply_cluster.go +++ b/upup/pkg/fi/cloudup/apply_cluster.go @@ -1053,7 +1053,7 @@ func (c *ApplyClusterCmd) validateKubernetesVersion() error { fmt.Printf("Kops support for this Kubernetes version is deprecated and will be removed in a future release.\n") fmt.Printf("\n") fmt.Printf("Upgrading is recommended\n") - fmt.Printf("More information: %s\n", buildPermalink("upgrade_kops", "")) + fmt.Printf("More information: %s\n", buildPermalink("upgrade_k8s", "")) fmt.Printf("\n") fmt.Printf(starline) fmt.Printf("\n")