Open sheidkamp opened 4 days ago
Something to keep in mind when we solve this:
https://github.com/solo-io/gloo/blob/e2ca0280c1828c5a7131d5e4c398770fc279088c/test/kubernetes/e2e/test.go#L25: The testHelper is a wrapper around glooctl, that we had used because it existed and allowed us to avoid rebuilding a tool. However, we know it has limitations, and would rather rely on the CLI directly if possible, to avoid building logic into our tests that our customers can't used
Do you have a suggestion for code improvement or tracking existing technical debt? Please describe.
The Split Webhook Validation tests rely on a testhelper to run Helm commands to update the gloo install.
More tests may need to do this in the future.
Currently these types of tests can not be run from other projects that import k8sgateway as a dependency.
For the moment, a separate SuiteRunner has been created for this situation.
Describe the solution you'd like
Create a way to pass a testhelper/helm values root to the tests.
Additional Context
No response