@@ -104,7 +104,7 @@ var _ = ginkgo.Describe("[managed] [gc] EKS Cluster external resource GC tests",
104104 ginkgo .By (fmt .Sprintf ("Installing sample workload with load balancer services: %s" , workloadYamlPath ))
105105 workloadYaml , err := os .ReadFile (workloadYamlPath ) //nolint:gosec
106106 Expect (err ).ShouldNot (HaveOccurred ())
107- Expect (workloadClusterProxy .Apply (ctx , workloadYaml )).ShouldNot (HaveOccurred ())
107+ Expect (workloadClusterProxy .CreateOrUpdate (ctx , workloadYaml )).ShouldNot (HaveOccurred ())
108108
109109 ginkgo .By ("Waiting for the Deployment to be available" )
110110 shared .WaitForDeploymentsAvailable (ctx , shared.WaitForDeploymentsAvailableInput {
@@ -135,7 +135,7 @@ var _ = ginkgo.Describe("[managed] [gc] EKS Cluster external resource GC tests",
135135 Cluster : cluster ,
136136 })
137137 framework .WaitForClusterDeleted (ctx , framework.WaitForClusterDeletedInput {
138- Getter : e2eCtx .Environment .BootstrapClusterProxy .GetClient (),
138+ Client : e2eCtx .Environment .BootstrapClusterProxy .GetClient (),
139139 Cluster : cluster ,
140140 }, e2eCtx .E2EConfig .GetIntervals ("" , "wait-delete-cluster" )... )
141141
@@ -225,7 +225,7 @@ var _ = ginkgo.Describe("[managed] [gc] EKS Cluster external resource GC tests",
225225 ginkgo .By (fmt .Sprintf ("Installing sample workload with load balancer services: %s" , workloadYamlPath ))
226226 workloadYaml , err := os .ReadFile (workloadYamlPath ) //nolint:gosec
227227 Expect (err ).ShouldNot (HaveOccurred ())
228- Expect (workloadClusterProxy .Apply (ctx , workloadYaml )).ShouldNot (HaveOccurred ())
228+ Expect (workloadClusterProxy .CreateOrUpdate (ctx , workloadYaml )).ShouldNot (HaveOccurred ())
229229
230230 ginkgo .By ("Waiting for the Deployment to be available" )
231231 shared .WaitForDeploymentsAvailable (ctx , shared.WaitForDeploymentsAvailableInput {
@@ -256,7 +256,7 @@ var _ = ginkgo.Describe("[managed] [gc] EKS Cluster external resource GC tests",
256256 Cluster : cluster ,
257257 })
258258 framework .WaitForClusterDeleted (ctx , framework.WaitForClusterDeletedInput {
259- Getter : e2eCtx .Environment .BootstrapClusterProxy .GetClient (),
259+ Client : e2eCtx .Environment .BootstrapClusterProxy .GetClient (),
260260 Cluster : cluster ,
261261 }, e2eCtx .E2EConfig .GetIntervals ("" , "wait-delete-cluster" )... )
262262
0 commit comments