Skip to content

Commit 4ac15c7

Browse files
Laurie T. MalaueasyCZ
andauthored
Change issuer identifier address for OIDC (#18693)
* Change issuer identifier address for OIDC * Fix test --------- Co-authored-by: Milan Pavlik <[email protected]>
1 parent c700636 commit 4ac15c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/installer/pkg/components/public-api-server/configmap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func configmap(ctx *common.RenderContext) ([]runtime.Object, error) {
3131
var stripeSecretPath string
3232
var personalAccessTokenSigningKeyPath string
3333

34-
publicUrl := fmt.Sprintf("https://api.%s", ctx.Config.Domain)
34+
publicUrl := fmt.Sprintf("https://services.%s", ctx.Config.Domain)
3535

3636
_ = ctx.WithExperimental(func(cfg *experimental.Config) error {
3737
_, _, stripeSecretPath, _ = getStripeConfig(cfg)

install/installer/pkg/components/public-api-server/configmap_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func TestConfigMap(t *testing.T) {
4141
})
4242

4343
expectedConfiguration := config.Configuration{
44-
PublicURL: fmt.Sprintf("https://api.%s", ctx.Config.Domain),
44+
PublicURL: fmt.Sprintf("https://services.%s", ctx.Config.Domain),
4545
GitpodServiceURL: fmt.Sprintf("ws://server.%s.svc.cluster.local:3000", ctx.Namespace),
4646
BillingServiceAddress: fmt.Sprintf("usage.%s.svc.cluster.local:9001", ctx.Namespace),
4747
SessionServiceAddress: fmt.Sprintf("server.%s.svc.cluster.local:9876", ctx.Namespace),

0 commit comments

Comments
 (0)