@@ -109,7 +109,7 @@ metadata:
109109
110110 By ("Waiting for core provider to be ready" )
111111 WaitFor (ctx , For (coreProvider ).In (bootstrapCluster ).ToSatisfy (
112- HaveStatusCondition ( & coreProvider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
112+ HaveStatusConditionsTrue ( coreProvider , operatorv1 .ProviderInstalledCondition )),
113113 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
114114
115115 By ("Waiting for status.InstalledVersion to be set" )
@@ -151,7 +151,7 @@ metadata:
151151
152152 By ("Waiting for bootstrap provider to be ready" )
153153 WaitFor (ctx , For (bootstrapProvider ).In (bootstrapCluster ).ToSatisfy (
154- HaveStatusCondition ( & bootstrapProvider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
154+ HaveStatusConditionsTrue ( bootstrapProvider , operatorv1 .ProviderInstalledCondition )),
155155 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
156156
157157 By ("Waiting for status.InstalledVersion to be set" )
@@ -186,7 +186,7 @@ metadata:
186186
187187 By ("Waiting for the control plane provider to be ready" )
188188 WaitFor (ctx , For (cpProvider ).In (bootstrapCluster ).ToSatisfy (
189- HaveStatusCondition ( & cpProvider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
189+ HaveStatusConditionsTrue ( cpProvider , operatorv1 .ProviderInstalledCondition )),
190190 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
191191
192192 By ("Waiting for status.InstalledVersion to be set" )
@@ -221,7 +221,7 @@ metadata:
221221
222222 By ("Waiting for the infrastructure provider to be ready" )
223223 WaitFor (ctx , For (infraProvider ).In (bootstrapCluster ).ToSatisfy (
224- HaveStatusCondition ( & infraProvider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
224+ HaveStatusConditionsTrue ( infraProvider , operatorv1 .ProviderInstalledCondition )),
225225 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
226226
227227 By ("Waiting for status.InstalledVersion to be set" )
@@ -263,7 +263,7 @@ metadata:
263263
264264 By ("Waiting for the addon provider to be ready" )
265265 WaitFor (ctx , For (addonProvider ).In (bootstrapCluster ).ToSatisfy (
266- HaveStatusCondition ( & addonProvider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
266+ HaveStatusConditionsTrue ( addonProvider , operatorv1 .ProviderInstalledCondition )),
267267 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
268268
269269 By ("Waiting for status.InstalledVersion to be set" )
@@ -307,7 +307,7 @@ metadata:
307307
308308 By ("Waiting for the ipam provider to be ready" )
309309 WaitFor (ctx , For (ipamProvider ).In (bootstrapCluster ).ToSatisfy (
310- HaveStatusCondition ( & ipamProvider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
310+ HaveStatusConditionsTrue ( ipamProvider , operatorv1 .ProviderInstalledCondition )),
311311 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
312312
313313 By ("Waiting for status.InstalledVersion to be set" )
@@ -342,7 +342,7 @@ metadata:
342342
343343 By ("Waiting for core provider to be ready" )
344344 WaitFor (ctx , For (coreProvider ).In (bootstrapCluster ).ToSatisfy (
345- HaveStatusCondition ( & coreProvider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
345+ HaveStatusConditionsTrue ( coreProvider , operatorv1 .ProviderInstalledCondition )),
346346 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
347347
348348 By ("Waiting for the core provide status.InstalledVersion to be set" )
@@ -423,7 +423,7 @@ metadata:
423423
424424 By ("Waiting for the custom provider to be ready" )
425425 WaitFor (ctx , For (provider ).In (bootstrapCluster ).ToSatisfy (
426- HaveStatusCondition ( & provider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
426+ HaveStatusConditionsTrue ( provider , operatorv1 .ProviderInstalledCondition )),
427427 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
428428
429429 By ("Waiting for status.InstalledVersion to be set" )
@@ -510,7 +510,7 @@ metadata:
510510
511511 By ("Waiting for the docker provider to be ready" )
512512 WaitFor (ctx , For (provider ).In (bootstrapCluster ).ToSatisfy (
513- HaveStatusCondition ( & provider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
513+ HaveStatusConditionsTrue ( provider , operatorv1 .ProviderInstalledCondition )),
514514 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
515515
516516 By ("Waiting for status.InstalledVersion to be set" )
@@ -597,7 +597,7 @@ metadata:
597597
598598 By ("Waiting for the docker provider to be ready" )
599599 WaitFor (ctx , For (provider ).In (bootstrapCluster ).ToSatisfy (
600- HaveStatusCondition ( & provider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
600+ HaveStatusConditionsTrue ( provider , operatorv1 .ProviderInstalledCondition )),
601601 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
602602
603603 By ("Waiting for status.InstalledVersion to be set" )
@@ -616,7 +616,7 @@ metadata:
616616
617617 By ("Waiting for the docker provider to be ready" )
618618 WaitFor (ctx , For (provider ).In (bootstrapCluster ).ToSatisfy (
619- HaveStatusCondition ( & provider . Status . Conditions , operatorv1 .ProviderInstalledCondition )),
619+ HaveStatusConditionsTrue ( provider , operatorv1 .ProviderInstalledCondition )),
620620 e2eConfig .GetIntervals (bootstrapClusterProxy .GetName (), "wait-controllers" )... )
621621
622622 Expect (bootstrapCluster .Delete (ctx , provider )).To (Succeed ())
0 commit comments