We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d38220d commit 205ef5dCopy full SHA for 205ef5d
install/installer/pkg/common/common.go
@@ -122,6 +122,11 @@ func DefaultEnv(cfg *config.Config) []corev1.EnvVar {
122
}},
123
{Name: "KUBE_DOMAIN", Value: "svc.cluster.local"},
124
{Name: "LOG_LEVEL", Value: strings.ToLower(logLevel)},
125
+ // TODO(gpl): This is our bandaid for https:://tldr.fail, until we upgrade from Go 1.23 to 1.24
126
+ // See these issues for details:
127
+ // - https://linear.app/gitpod/issue/CLC-1264/investigate-public-api-server-connectivity-issues-during-sso-login#comment-f2daa302
128
+ // - https://linear.app/gitpod/issue/CLC-1067/go-upgrade-from-123x-to-124x-once-available for details
129
+ {Name: "GODEBUG", Value: "tlskyber=0"},
130
},
131
ProxyEnv(cfg),
132
)
0 commit comments