From f9f44f10683a3159d5944ca638d5087f07d8cb16 Mon Sep 17 00:00:00 2001 From: Cecile Robert-Michon Date: Thu, 10 Aug 2023 23:53:09 +0000 Subject: [PATCH] Add back flavor to Waiter interface --- test/framework/clusterctl/clusterctl_helpers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/framework/clusterctl/clusterctl_helpers.go b/test/framework/clusterctl/clusterctl_helpers.go index 0b59feb29b8c..d970a5e3f229 100644 --- a/test/framework/clusterctl/clusterctl_helpers.go +++ b/test/framework/clusterctl/clusterctl_helpers.go @@ -315,6 +315,7 @@ func ApplyClusterTemplateAndWait(ctx context.Context, input ApplyClusterTemplate ClusterName: input.ConfigCluster.ClusterName, Namespace: input.ConfigCluster.Namespace, CNIManifestPath: input.CNIManifestPath, + Flavor: input.ConfigCluster.Flavor, WaitForClusterIntervals: input.WaitForClusterIntervals, WaitForControlPlaneIntervals: input.WaitForControlPlaneIntervals, WaitForMachineDeployments: input.WaitForMachineDeployments, @@ -333,6 +334,7 @@ type ApplyCustomClusterTemplateAndWaitInput struct { ClusterName string Namespace string CNIManifestPath string + Flavor string WaitForClusterIntervals []interface{} WaitForControlPlaneIntervals []interface{} WaitForMachineDeployments []interface{}