Skip to content

Commit 85483f0

Browse files
committed
test(e2e): increase time and use correct option
Signed-off-by: Lukasz Dziedziak <lukidzi@gmail.com>
1 parent e6e3e7e commit 85483f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/federation/federation_kubernetes.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func FederateKubeZoneCPToKubeGlobal() {
3535
Install(Kuma(core.Global,
3636
WithInstallationMode(HelmInstallationMode),
3737
WithHelmReleaseName(releaseName),
38-
WithEnv("KUMA_DEFAULTS_SKIP_MESH_CREATION", "true"),
38+
WithSkipDefaultMesh(true),
3939
)).
4040
Setup(global)
4141
Expect(err).ToNot(HaveOccurred())
@@ -88,15 +88,15 @@ func FederateKubeZoneCPToKubeGlobal() {
8888
out, err := k8s.RunKubectlAndGetOutputE(global.GetTesting(), global.GetKubectlOptions(), "get", "dataplanes", "-A")
8989
g.Expect(err).ToNot(HaveOccurred())
9090
g.Expect(out).Should(ContainSubstring("demo-client"))
91-
}, "30s", "1s").Should(Succeed())
91+
}, "120s", "1s").Should(Succeed())
9292
})
9393

9494
It("should sync data policies to global cp", func() {
9595
Eventually(func(g Gomega) {
9696
out, err := k8s.RunKubectlAndGetOutputE(global.GetTesting(), global.GetKubectlOptions(), "get", "meshcircuitbreakers", "-A")
9797
g.Expect(err).ToNot(HaveOccurred())
9898
g.Expect(out).Should(ContainSubstring("mesh-circuit-breaker-all-default-zw856xvxdb7558d9"))
99-
}, "30s", "1s").Should(Succeed())
99+
}, "120s", "1s").Should(Succeed())
100100
})
101101

102102
It("should not break the traffic", func() {

0 commit comments

Comments
 (0)