Skip to content

Commit

Permalink
Remove -service-service suffix after using stargateKey and not dcKey
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Dec 11, 2024
1 parent 59a5702 commit a48592f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/e2e/auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ func multiDcAuthOnOff(t *testing.T, ctx context.Context, namespace string, f *fr
stargateCqlHostAndPort := ingressConfigs[f.DataPlaneContexts[0]].StargateCql
reaperRestHostAndPort := ingressConfigs[f.DataPlaneContexts[0]].ReaperRest

f.DeployStargateIngresses(t, f.DataPlaneContexts[0], namespace, fmt.Sprintf("%s-stargate-service", stargate1Key.Name), stargateRestHostAndPort, stargateGrpcHostAndPort)
f.DeployReaperIngresses(t, f.DataPlaneContexts[0], namespace, fmt.Sprintf("%s-reaper-service", reaper1Key.Name), reaperRestHostAndPort)
f.DeployStargateIngresses(t, f.DataPlaneContexts[0], namespace, fmt.Sprintf("%s-service", stargate1Key.Name), stargateRestHostAndPort, stargateGrpcHostAndPort)
f.DeployReaperIngresses(t, f.DataPlaneContexts[0], namespace, fmt.Sprintf("%s-service", reaper1Key.Name), reaperRestHostAndPort)
checkStargateApisReachable(t, ctx, f.DataPlaneContexts[0], namespace, stargate1Key.Name, stargateRestHostAndPort, stargateGrpcHostAndPort, stargateCqlHostAndPort, "", "", false, f)
checkReaperApiReachable(t, ctx, reaperRestHostAndPort)

stargateRestHostAndPort = ingressConfigs[f.DataPlaneContexts[1]].StargateRest
stargateGrpcHostAndPort = ingressConfigs[f.DataPlaneContexts[1]].StargateGrpc
stargateCqlHostAndPort = ingressConfigs[f.DataPlaneContexts[1]].StargateCql
reaperRestHostAndPort = ingressConfigs[f.DataPlaneContexts[1]].ReaperRest
f.DeployStargateIngresses(t, f.DataPlaneContexts[1], namespace, fmt.Sprintf("%s-stargate-service", stargate2Key.Name), stargateRestHostAndPort, stargateGrpcHostAndPort)
f.DeployReaperIngresses(t, f.DataPlaneContexts[1], namespace, fmt.Sprintf("%s-reaper-service", reaper2Key.Name), reaperRestHostAndPort)
f.DeployStargateIngresses(t, f.DataPlaneContexts[1], namespace, fmt.Sprintf("%s-service", stargate2Key.Name), stargateRestHostAndPort, stargateGrpcHostAndPort)
f.DeployReaperIngresses(t, f.DataPlaneContexts[1], namespace, fmt.Sprintf("%s-service", reaper2Key.Name), reaperRestHostAndPort)
checkStargateApisReachable(t, ctx, f.DataPlaneContexts[1], namespace, stargate2Key.Name, stargateRestHostAndPort, stargateGrpcHostAndPort, stargateCqlHostAndPort, "", "", false, f)
checkReaperApiReachable(t, ctx, reaperRestHostAndPort)

Expand Down

0 comments on commit a48592f

Please sign in to comment.