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
and [conversion hooks](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning/#webhook-conversion)
8
8
for Kubernetes in Java.
9
9
@@ -16,10 +16,10 @@ Before you start make sure you understand these concepts in Kubernetes, reading
16
16
There are samples both
17
17
for [Spring Boot](https://github.com/java-operator-sdk/admission-controller-framework/tree/main/samples/spring-boot)
18
18
and [Quarkus](https://github.com/java-operator-sdk/kubernetes-webooks-framework/tree/main/samples/quarkus), both of them
19
-
implements the same logic. Both sync and async APIs
20
-
are showcased. This documentation describes the Quarkus version, however Spring Boot version is almost identical.
19
+
implement the same logic. Both sync and async APIs
20
+
are showcased. This documentation describes the Quarkus version, however the Spring Boot version is almost identical.
21
21
22
-
There are two endpoint, one
22
+
There are two endpoints, one
23
23
for [admission controllers](https://github.com/java-operator-sdk/admission-controller-framework/blob/main/samples/quarkus/src/main/java/io/javaoperatorsdk/webhook/sample/admission/AdmissionEndpoint.java)
@@ -29,7 +29,7 @@ Starting from those endpoints, it should be trivial to understand how the underl
29
29
30
30
### End-To-End Tests
31
31
32
-
The goal of the end-to-end tests is to test the framework in a productionlike environment, but also works as an
32
+
The goal of the end-to-end tests is to test the framework in a production-like environment, but also works as an
33
33
executable documentation to guide developers how to deploy and configure the target service.
34
34
35
35
The [end-to-end tests](https://github.com/java-operator-sdk/admission-controller-framework/blob/main/samples/quarkus/src/test/java/io/javaoperatorsdk/webhook/sample/QuarkusWebhooksE2E.java)
@@ -54,7 +54,7 @@ using [dekorate](https://github.com/java-operator-sdk/admission-controller-frame
54
54
</dependency>
55
55
```
56
56
57
-
Only additional resources used for admission hooks, are present in
57
+
Only additional resources used for admission hooks are present in
58
58
the [k8s](https://github.com/java-operator-sdk/admission-controller-framework/tree/main/samples/quarkus/k8s)
59
59
directory. These are the configuration files to configure the admission hooks. For example the configuration for
0 commit comments