Skip to content

Commit 205ef5d

Browse files
authored
[installer] Avoid https://tldr.fail (#20726)
Tool: gitpod/catfood.gitpod.cloud
1 parent d38220d commit 205ef5d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

install/installer/pkg/common/common.go

+5
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,11 @@ func DefaultEnv(cfg *config.Config) []corev1.EnvVar {
122122
}},
123123
{Name: "KUBE_DOMAIN", Value: "svc.cluster.local"},
124124
{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"},
125130
},
126131
ProxyEnv(cfg),
127132
)

0 commit comments

Comments
 (0)