Skip to content

Commit

Permalink
Prefix changes
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Nov 27, 2024
1 parent dac869f commit fb7cd5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/e2e/auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func multiDcAuthOnOff(t *testing.T, ctx context.Context, namespace string, f *fr
// turn auth on
toggleAuthentication(t, f, ctx, kcKey, true)
waitForAllComponentsReady(t, f, ctx, kcKey, dc1Key, dc2Key, stargate1Key, stargate2Key, reaper1Key, reaper2Key)
testAuthenticationEnabled(t, f, ctx, namespace, kcKey, reaperUiSecretKey, replication, pod1Name, pod2Name, DcPrefix(t, f, dc1Key), DcPrefix(t, f, dc2Key))
testAuthenticationEnabled(t, f, ctx, namespace, kcKey, reaperUiSecretKey, replication, pod1Name, pod2Name, DcPrefix(t, f, dc1Key), DcPrefixOverride(t, f, dc2Key))
}

func waitForAllComponentsReady(
Expand Down
8 changes: 4 additions & 4 deletions test/e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ func addDcToCluster(t *testing.T, ctx context.Context, namespace string, f *fram
K8sContext: f.DataPlaneContexts[1],
NamespacedName: types.NamespacedName{
Namespace: namespace,
Name: DcPrefix(t, f, dc2Key) + "-stargate",
Name: DcPrefixOverride(t, f, dc2Key) + "-stargate",
},
}
checkStargateReady(t, f, ctx, sg2Key)
Expand All @@ -1251,7 +1251,7 @@ func addDcToCluster(t *testing.T, ctx context.Context, namespace string, f *fram
K8sContext: f.DataPlaneContexts[1],
NamespacedName: types.NamespacedName{
Namespace: namespace,
Name: DcPrefix(t, f, dc2Key) + "-reaper",
Name: DcPrefixOverride(t, f, dc2Key) + "-reaper",
},
}
checkReaperReady(t, f, ctx, reaper2Key)
Expand Down Expand Up @@ -1457,7 +1457,7 @@ func removeDcFromCluster(t *testing.T, ctx context.Context, namespace string, f
K8sContext: f.DataPlaneContexts[1],
NamespacedName: types.NamespacedName{
Namespace: namespace,
Name: DcPrefix(t, f, dc2Key) + "-stargate",
Name: DcPrefixOverride(t, f, dc2Key) + "-stargate",
},
}
checkStargateReady(t, f, ctx, sg2Key)
Expand All @@ -1466,7 +1466,7 @@ func removeDcFromCluster(t *testing.T, ctx context.Context, namespace string, f
K8sContext: f.DataPlaneContexts[1],
NamespacedName: types.NamespacedName{
Namespace: namespace,
Name: DcPrefix(t, f, dc2Key) + "-reaper",
Name: DcPrefixOverride(t, f, dc2Key) + "-reaper",
},
}
checkReaperReady(t, f, ctx, reaper2Key)
Expand Down

0 comments on commit fb7cd5b

Please sign in to comment.