@@ -52,25 +52,27 @@ var _ = Describe("When upgrading a workload cluster using ClusterClass and testi
5252 }
5353
5454 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" ),
6162 }
6263 })
6364})
6465
6566var _ = Describe ("When upgrading a workload cluster using ClusterClass [ClusterClass]" , func () {
6667 ClusterUpgradeConformanceSpec (ctx , func () ClusterUpgradeConformanceSpecInput {
6768 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" ),
7476 // This test is run in CI in parallel with other tests. To keep the test duration reasonable
7577 // the conformance tests are skipped.
7678 ControlPlaneMachineCount : pointer .Int64 (1 ),
@@ -83,11 +85,12 @@ var _ = Describe("When upgrading a workload cluster using ClusterClass [ClusterC
8385var _ = Describe ("When upgrading a workload cluster using ClusterClass with a HA control plane [ClusterClass]" , func () {
8486 ClusterUpgradeConformanceSpec (ctx , func () ClusterUpgradeConformanceSpecInput {
8587 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" ),
9194 // This test is run in CI in parallel with other tests. To keep the test duration reasonable
9295 // the conformance tests are skipped.
9396 SkipConformanceTests : true ,
@@ -101,11 +104,12 @@ var _ = Describe("When upgrading a workload cluster using ClusterClass with a HA
101104var _ = Describe ("When upgrading a workload cluster using ClusterClass with a HA control plane using scale-in rollout [ClusterClass]" , func () {
102105 ClusterUpgradeConformanceSpec (ctx , func () ClusterUpgradeConformanceSpecInput {
103106 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" ),
109113 // This test is run in CI in parallel with other tests. To keep the test duration reasonable
110114 // the conformance tests are skipped.
111115 SkipConformanceTests : true ,
0 commit comments