Skip to content

Commit

Permalink
Fix e2e hostname length (#1383)
Browse files Browse the repository at this point in the history
Signed-off-by: Prajyot-Parab <[email protected]>
  • Loading branch information
Prajyot-Parab authored Sep 5, 2023
1 parent 0c1521b commit 02aa85f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/e2e/config/ibmcloud-e2e-powervs.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
managementClusterName: capi-ibmcloud-e2e
managementClusterName: capibm-e2e

images:
# Use local built images for e2e tests
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/config/ibmcloud-e2e-vpc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
managementClusterName: capi-ibmcloud-e2e
managementClusterName: capibm-e2e

images:
# Use local built images for e2e tests
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var _ = Describe("Workload cluster creation", func() {

Expect(e2eConfig.Variables).To(HaveKey(KubernetesVersion))

clusterName = fmt.Sprintf("capi-ibmcloud-e2e-%s", util.RandomString(6))
clusterName = fmt.Sprintf("capibm-e2e-%s", util.RandomString(6))

// Setup a Namespace where to host objects for this spec and create a watcher for the namespace events.
namespace, cancelWatches = setupSpecNamespace(ctx, specName, bootstrapClusterProxy, artifactFolder)
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func init() {
func TestE2E(t *testing.T) {
ctrl.SetLogger(klog.Background())
RegisterFailHandler(Fail)
RunSpecs(t, "capi-ibmcloud-e2e")
RunSpecs(t, "capibm-e2e")
}

// Using a SynchronizedBeforeSuite for controlling how to create resources shared across ParallelNodes (~ginkgo threads).
Expand Down

0 comments on commit 02aa85f

Please sign in to comment.