Add ability to provide a preconfigured KubernetesClient #1507
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why ?
We are using the Testcontainers K3s-module (https://www.testcontainers.org/modules/k3s/) for integration tests while working on our operators.
These k8s-instances are created on the fly at test-runtime there is never a KUBECONFIG-env or something in ~/.kube/config which means that they can't be used with the default test-implementatio which uses
new KubernetesClientBuilder().build()
and relies on the existence of either of the two.What ?
I added the ability to inject your own instanc eof a KubernetesClient to the builders for LocallyRunOperatorExtension and ClusterDeployedOperatorExtension.
In case none is provided it falls back to the old behaviour.
I hope this helps, feel free to leave comments for things I should change/add :)
Thanks a lot for your great work!