Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit a950c43

Browse files
committed
Update build tags
Signed-off-by: Chris Privitere <[email protected]>
1 parent c731a1a commit a950c43

6 files changed

+22
-1
lines changed

test/e2e/capi_e2e_clusterctl_upgrade_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build e2e
12
// +build e2e
23

34
/*

test/e2e/capi_e2e_conformance_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build e2e
12
// +build e2e
23

34
/*

test/e2e/capi_e2e_quickstart_test.go

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build e2e
12
// +build e2e
23

34
/*
@@ -22,20 +23,35 @@ import (
2223
"context"
2324

2425
. "github.com/onsi/ginkgo"
26+
"k8s.io/utils/pointer"
2527
capi_e2e "sigs.k8s.io/cluster-api/test/e2e"
2628
)
2729

2830
var _ = Describe("[QuickStart] Running the Cluster API E2E QuickStart tests", func() {
2931
ctx := context.TODO()
3032

31-
Context("Running the quickstart spec", func() {
33+
Context("Running the [CPEM] quickstart spec", func() {
3234
capi_e2e.QuickStartSpec(ctx, func() capi_e2e.QuickStartSpecInput {
3335
return capi_e2e.QuickStartSpecInput{
3436
E2EConfig: e2eConfig,
3537
ClusterctlConfigPath: clusterctlConfigPath,
3638
BootstrapClusterProxy: bootstrapClusterProxy,
3739
ArtifactFolder: artifactFolder,
3840
SkipCleanup: skipCleanup,
41+
//Flavor: pointer.String("kube-vip"),
42+
}
43+
})
44+
})
45+
46+
Context("Running the [kube-vip] quickstart spec", func() {
47+
capi_e2e.QuickStartSpec(ctx, func() capi_e2e.QuickStartSpecInput {
48+
return capi_e2e.QuickStartSpecInput{
49+
E2EConfig: e2eConfig,
50+
ClusterctlConfigPath: clusterctlConfigPath,
51+
BootstrapClusterProxy: bootstrapClusterProxy,
52+
ArtifactFolder: artifactFolder,
53+
SkipCleanup: skipCleanup,
54+
Flavor: pointer.String("kube-vip"),
3955
}
4056
})
4157
})

test/e2e/capi_e2e_self_hosted_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build e2e
12
// +build e2e
23

34
/*

test/e2e/capi_e2e_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build e2e
12
// +build e2e
23

34
/*

test/e2e/capi_e2e_workload_upgrade_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build e2e
12
// +build e2e
23

34
/*

0 commit comments

Comments
 (0)