Update to Go 1.14
Updates the Go toolchain to 1.14 and gets rid of all upstreamed
patches. Also shrinks binary sizes.
Test Plan: Should be covered by CI.
X-Origin-Diff: phab/D515
GitOrigin-RevId: 1c400a6ba6a8d78a02aba925d95486b807eda0e9
diff --git a/core/internal/kubernetes/auth.go b/core/internal/kubernetes/auth.go
index 89ae6dc..0095bc4 100644
--- a/core/internal/kubernetes/auth.go
+++ b/core/internal/kubernetes/auth.go
@@ -70,7 +70,8 @@
}
// Workaround for https://github.com/golang/go/issues/26676 in Go's crypto/x509. Specifically Go
-// violates Section 4.2.1.2 of RFC 5280 without this. Should eventually be redundant.
+// violates Section 4.2.1.2 of RFC 5280 without this.
+// Fixed for 1.15 in https://go-review.googlesource.com/c/go/+/227098/.
//
// Taken from https://github.com/FiloSottile/mkcert/blob/master/cert.go#L295 written by one of Go's
// crypto engineers