@@ -35,7 +35,7 @@ func FederateKubeZoneCPToKubeGlobal() {
35
35
Install (Kuma (core .Global ,
36
36
WithInstallationMode (HelmInstallationMode ),
37
37
WithHelmReleaseName (releaseName ),
38
- WithEnv ( "KUMA_DEFAULTS_SKIP_MESH_CREATION" , " true" ),
38
+ WithSkipDefaultMesh ( true ),
39
39
)).
40
40
Setup (global )
41
41
Expect (err ).ToNot (HaveOccurred ())
@@ -88,15 +88,15 @@ func FederateKubeZoneCPToKubeGlobal() {
88
88
out , err := k8s .RunKubectlAndGetOutputE (global .GetTesting (), global .GetKubectlOptions (), "get" , "dataplanes" , "-A" )
89
89
g .Expect (err ).ToNot (HaveOccurred ())
90
90
g .Expect (out ).Should (ContainSubstring ("demo-client" ))
91
- }, "30s " , "1s" ).Should (Succeed ())
91
+ }, "120s " , "1s" ).Should (Succeed ())
92
92
})
93
93
94
94
It ("should sync data policies to global cp" , func () {
95
95
Eventually (func (g Gomega ) {
96
96
out , err := k8s .RunKubectlAndGetOutputE (global .GetTesting (), global .GetKubectlOptions (), "get" , "meshcircuitbreakers" , "-A" )
97
97
g .Expect (err ).ToNot (HaveOccurred ())
98
98
g .Expect (out ).Should (ContainSubstring ("mesh-circuit-breaker-all-default-zw856xvxdb7558d9" ))
99
- }, "30s " , "1s" ).Should (Succeed ())
99
+ }, "120s " , "1s" ).Should (Succeed ())
100
100
})
101
101
102
102
It ("should not break the traffic" , func () {
0 commit comments