dashboard: remove misleading -kube suffixes from host types

They used to run on Kubernetes (and still could) but they're just a
container and we run them on COS nowadays.

Change-Id: I21a6db90efc5071997c6d6dcae1a42a7c28afa3a
Reviewed-on: https://go-review.googlesource.com/c/build/+/209957
Reviewed-by: Alexander Rakoczy <alex@golang.org>
Run-TryBot: Alexander Rakoczy <alex@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/dashboard/builders.go b/dashboard/builders.go
index d6e7d06..f3bfd76 100644
--- a/dashboard/builders.go
+++ b/dashboard/builders.go
@@ -156,7 +156,7 @@
 		Notes:       "for localhost development of buildlets/gomote/coordinator only",
 		SSHUsername: os.Getenv("USER"),
 	},
-	"host-nacl-kube": &HostConfig{
+	"host-nacl": &HostConfig{
 		Notes:           "Container with Native Client binaries.",
 		ContainerImage:  "linux-x86-nacl:latest",
 		buildletURLTmpl: "http://storage.googleapis.com/$BUCKET/buildlet.linux-amd64",
@@ -169,7 +169,7 @@
 		env:             []string{"GOROOT_BOOTSTRAP=/go1.4"},
 		SSHUsername:     "root",
 	},
-	"host-s390x-cross-kube": &HostConfig{
+	"host-s390x-cross": &HostConfig{
 		Notes:           "Container with s390x cross-compiler.",
 		ContainerImage:  "linux-s390x-cross:latest",
 		buildletURLTmpl: "https://storage.googleapis.com/$BUCKET/buildlet.linux-amd64",
@@ -1787,7 +1787,7 @@
 	})
 	addBuilder(BuildConfig{
 		Name:     "nacl-386",
-		HostType: "host-nacl-kube",
+		HostType: "host-nacl",
 		buildsRepo: func(repo, branch, goBranch string) bool {
 			// nacl support is removed in Go 1.14.
 			return repo == "go" && !atLeastGo1(goBranch, 14) && !strings.HasPrefix(goBranch, "dev.")
@@ -1797,7 +1797,7 @@
 	})
 	addBuilder(BuildConfig{
 		Name:     "nacl-amd64p32",
-		HostType: "host-nacl-kube",
+		HostType: "host-nacl",
 		buildsRepo: func(repo, branch, goBranch string) bool {
 			// nacl support is removed in Go 1.14.
 			return repo == "go" && !atLeastGo1(goBranch, 14) && !strings.HasPrefix(goBranch, "dev.")
@@ -2324,7 +2324,7 @@
 	})
 	addBuilder(BuildConfig{
 		Name:        "linux-s390x-crosscompile",
-		HostType:    "host-s390x-cross-kube",
+		HostType:    "host-s390x-cross",
 		Notes:       "s390x cross-compile builder for releases; doesn't run tests",
 		CompileOnly: true,
 		tryOnly:     true, // but not in trybot set for now