You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2024. It is now read-only.
In general using additional standard frameworks to implement webhookhooks is adviced,
101
+
In general, it is a best practice to use additional standard frameworks to implement Kubernetes webhooks,
102
102
like [kubernetes-webooks-framework](https://github.com/java-operator-sdk/kubernetes-webooks-framework)
103
103
with Quarkus or Spring. However, we demonstrate how it works
104
104
in [this test](https://github.com/java-operator-sdk/jenvtest/blob/main/samples/src/test/java/io/javaoperatorsdk/jenvtest/KubernetesMutationHookHandlingTest.java#L53-L53)
@@ -112,9 +112,10 @@ All the certificates for the Kube API Server and for the client is generated. Th
112
112
113
113
#### Downloading binaries
114
114
115
-
Binaries are downloaded automatically under ~/.jenvtest/k8s/[target-platform-and-version].
115
+
Binaries are downloaded automatically under ~/.jenvtest/k8s/[target-platform-and-version] if no binary found locally.
116
+
If there are multiple binaries found, the latest if selected (unless a target version is not specified).
116
117
117
118
Also [`setup-envtest`](https://pkg.go.dev/sigs.k8s.io/controller-runtime/tools/setup-envtest#section-readme) can be used
118
119
to download binaries manually. By executing `setup-envtest use --bin-dir ~/.jenvtest` will download the latest required
119
-
binaries to the default directory.
120
+
binaries to the default directory. This is useful if always running the tests in offline mode.
0 commit comments