Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(e2e): explain use of WithSkipDefaultMesh better #8499

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ stringData:

err = NewClusterSetup().
Install(Kuma(core.Zone,
// it's required because we check if Kuma is ready,
// and we use "kubectl get mesh" which is not available in universal mode
// WithSkipDefaultMesh is required because we check if Kuma is ready by using "kubectl get mesh"
// here in the framework https://github.com/kumahq/kuma/blob/1633d34ad116dd1e618f4a27dd1526f5ff7d8bde/test/framework/k8s_cluster.go#L564
// but on universal mode we use postgres to manage resources so without this it will fail making the test suite fail
WithSkipDefaultMesh(true),
WithInstallationMode(HelmInstallationMode),
WithHelmReleaseName(releaseName),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ stringData:

err = NewClusterSetup().
Install(Kuma(core.Global,
// it's required because we check if Kuma is ready,
// and we use "kubectl get mesh" which is not available in universal mode
// WithSkipDefaultMesh is required because we check if Kuma is ready by using "kubectl get mesh"
// here in the framework https://github.com/kumahq/kuma/blob/1633d34ad116dd1e618f4a27dd1526f5ff7d8bde/test/framework/k8s_cluster.go#L564
// but on universal mode we use postgres to manage resources so without this it will fail making the test suite fail
WithSkipDefaultMesh(true),
WithInstallationMode(HelmInstallationMode),
WithHelmReleaseName(releaseName),
Expand Down
Loading