@@ -39,6 +39,8 @@ var _ = Describe("When testing clusterctl upgrades (v0.3=>current)", func() {
39
39
UpgradeClusterctlVariables : map [string ]string {
40
40
"CLUSTER_TOPOLOGY" : "false" ,
41
41
},
42
+ MgmtFlavor : "topology" ,
43
+ WorkloadFlavor : "" ,
42
44
}
43
45
})
44
46
})
@@ -54,6 +56,8 @@ var _ = Describe("When testing clusterctl upgrades (v0.4=>current)", func() {
54
56
InitWithBinary : "https://github.com/kubernetes-sigs/cluster-api/releases/download/v0.4.8/clusterctl-{OS}-{ARCH}" ,
55
57
InitWithProvidersContract : "v1alpha4" ,
56
58
InitWithKubernetesVersion : "v1.23.13" ,
59
+ MgmtFlavor : "topology" ,
60
+ WorkloadFlavor : "" ,
57
61
}
58
62
})
59
63
})
@@ -78,6 +82,8 @@ var _ = Describe("When testing clusterctl upgrades (v1.0=>current)", func() {
78
82
// try to deploy the latest version of our test-extension from docker.yaml.
79
83
InitWithRuntimeExtensionProviders : []string {},
80
84
InitWithKubernetesVersion : "v1.23.13" ,
85
+ MgmtFlavor : "topology" ,
86
+ WorkloadFlavor : "" ,
81
87
}
82
88
})
83
89
})
@@ -102,6 +108,10 @@ var _ = Describe("When testing clusterctl upgrades (v1.2=>current)", func() {
102
108
// try to deploy the latest version of our test-extension from docker.yaml.
103
109
InitWithRuntimeExtensionProviders : []string {},
104
110
InitWithKubernetesVersion : "v1.26.0" ,
111
+ // TODO(sbueringer) The topology flavor enables PSA.
112
+ // CAPD will only work with PSA after we have a release with https://github.com/kubernetes-sigs/cluster-api/pull/8313.
113
+ //MgmtFlavor: "topology",
114
+ WorkloadFlavor : "" ,
105
115
}
106
116
})
107
117
})
@@ -126,7 +136,10 @@ var _ = Describe("When testing clusterctl upgrades using ClusterClass (v1.2=>cur
126
136
// try to deploy the latest version of our test-extension from docker.yaml.
127
137
InitWithRuntimeExtensionProviders : []string {},
128
138
InitWithKubernetesVersion : "v1.26.0" ,
129
- WorkloadFlavor : "topology" ,
139
+ // TODO(sbueringer) The topology flavor enables PSA.
140
+ // CAPD will only work with PSA after we have a release with https://github.com/kubernetes-sigs/cluster-api/pull/8313.
141
+ //MgmtFlavor: "topology",
142
+ WorkloadFlavor : "topology" ,
130
143
}
131
144
})
132
145
})
@@ -142,6 +155,8 @@ var _ = Describe("When testing clusterctl upgrades (v1.3=>current)", func() {
142
155
InitWithBinary : "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.3.0/clusterctl-{OS}-{ARCH}" ,
143
156
InitWithProvidersContract : "v1beta1" ,
144
157
InitWithKubernetesVersion : "v1.26.0" ,
158
+ MgmtFlavor : "topology" ,
159
+ WorkloadFlavor : "" ,
145
160
}
146
161
})
147
162
})
@@ -157,6 +172,7 @@ var _ = Describe("When testing clusterctl upgrades using ClusterClass (v1.3=>cur
157
172
InitWithBinary : "https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.3.0/clusterctl-{OS}-{ARCH}" ,
158
173
InitWithProvidersContract : "v1beta1" ,
159
174
InitWithKubernetesVersion : "v1.26.0" ,
175
+ MgmtFlavor : "topology" ,
160
176
WorkloadFlavor : "topology" ,
161
177
}
162
178
})
0 commit comments