@@ -52,25 +52,27 @@ var _ = Describe("When upgrading a workload cluster using ClusterClass and testi
52
52
}
53
53
54
54
return ClusterUpgradeConformanceSpecInput {
55
- E2EConfig : e2eConfig ,
56
- ClusterctlConfigPath : clusterctlConfigPath ,
57
- BootstrapClusterProxy : bootstrapClusterProxy ,
58
- ArtifactFolder : artifactFolder ,
59
- SkipCleanup : skipCleanup ,
60
- Flavor : flavor ,
55
+ E2EConfig : e2eConfig ,
56
+ ClusterctlConfigPath : clusterctlConfigPath ,
57
+ BootstrapClusterProxy : bootstrapClusterProxy ,
58
+ ArtifactFolder : artifactFolder ,
59
+ SkipCleanup : skipCleanup ,
60
+ Flavor : flavor ,
61
+ InfrastructureProvider : pointer .String ("docker" ),
61
62
}
62
63
})
63
64
})
64
65
65
66
var _ = Describe ("When upgrading a workload cluster using ClusterClass [ClusterClass]" , func () {
66
67
ClusterUpgradeConformanceSpec (ctx , func () ClusterUpgradeConformanceSpecInput {
67
68
return ClusterUpgradeConformanceSpecInput {
68
- E2EConfig : e2eConfig ,
69
- ClusterctlConfigPath : clusterctlConfigPath ,
70
- BootstrapClusterProxy : bootstrapClusterProxy ,
71
- ArtifactFolder : artifactFolder ,
72
- SkipCleanup : skipCleanup ,
73
- Flavor : pointer .String ("topology" ),
69
+ E2EConfig : e2eConfig ,
70
+ ClusterctlConfigPath : clusterctlConfigPath ,
71
+ BootstrapClusterProxy : bootstrapClusterProxy ,
72
+ ArtifactFolder : artifactFolder ,
73
+ SkipCleanup : skipCleanup ,
74
+ InfrastructureProvider : pointer .String ("docker" ),
75
+ Flavor : pointer .String ("topology" ),
74
76
// This test is run in CI in parallel with other tests. To keep the test duration reasonable
75
77
// the conformance tests are skipped.
76
78
ControlPlaneMachineCount : pointer .Int64 (1 ),
@@ -83,11 +85,12 @@ var _ = Describe("When upgrading a workload cluster using ClusterClass [ClusterC
83
85
var _ = Describe ("When upgrading a workload cluster using ClusterClass with a HA control plane [ClusterClass]" , func () {
84
86
ClusterUpgradeConformanceSpec (ctx , func () ClusterUpgradeConformanceSpecInput {
85
87
return ClusterUpgradeConformanceSpecInput {
86
- E2EConfig : e2eConfig ,
87
- ClusterctlConfigPath : clusterctlConfigPath ,
88
- BootstrapClusterProxy : bootstrapClusterProxy ,
89
- ArtifactFolder : artifactFolder ,
90
- SkipCleanup : skipCleanup ,
88
+ E2EConfig : e2eConfig ,
89
+ ClusterctlConfigPath : clusterctlConfigPath ,
90
+ BootstrapClusterProxy : bootstrapClusterProxy ,
91
+ ArtifactFolder : artifactFolder ,
92
+ SkipCleanup : skipCleanup ,
93
+ InfrastructureProvider : pointer .String ("docker" ),
91
94
// This test is run in CI in parallel with other tests. To keep the test duration reasonable
92
95
// the conformance tests are skipped.
93
96
SkipConformanceTests : true ,
@@ -101,11 +104,12 @@ var _ = Describe("When upgrading a workload cluster using ClusterClass with a HA
101
104
var _ = Describe ("When upgrading a workload cluster using ClusterClass with a HA control plane using scale-in rollout [ClusterClass]" , func () {
102
105
ClusterUpgradeConformanceSpec (ctx , func () ClusterUpgradeConformanceSpecInput {
103
106
return ClusterUpgradeConformanceSpecInput {
104
- E2EConfig : e2eConfig ,
105
- ClusterctlConfigPath : clusterctlConfigPath ,
106
- BootstrapClusterProxy : bootstrapClusterProxy ,
107
- ArtifactFolder : artifactFolder ,
108
- SkipCleanup : skipCleanup ,
107
+ E2EConfig : e2eConfig ,
108
+ ClusterctlConfigPath : clusterctlConfigPath ,
109
+ BootstrapClusterProxy : bootstrapClusterProxy ,
110
+ ArtifactFolder : artifactFolder ,
111
+ SkipCleanup : skipCleanup ,
112
+ InfrastructureProvider : pointer .String ("docker" ),
109
113
// This test is run in CI in parallel with other tests. To keep the test duration reasonable
110
114
// the conformance tests are skipped.
111
115
SkipConformanceTests : true ,
0 commit comments