Skip to content

Commit 073855d

Browse files
committed
docs: naming - dynamic admission controllers
1 parent a3e2ab7 commit 073855d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# kubernetes-webhooks-framework
22

33
Framework and tooling to support
4-
implementing [admission controllers](https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/)
4+
implementing [dynamic admission controllers](https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/)
55
and [conversion hooks](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning/#webhook-conversion)
66
for Kubernetes in Java. Supports both **quarkus** and **spring boot**. Both **sync** and **async** programing model.
77

@@ -11,7 +11,7 @@ for Kubernetes in Java. Supports both **quarkus** and **spring boot**. Both **sy
1111

1212
## Sample Usage
1313

14-
### Admission Controllers
14+
### Dynamic Admission Controllers
1515

1616
Defining a mutation or validation controller is simple as:
1717

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Intro
44

55
Kubernetes Webhooks Framework makes it simple to
6-
implement [admission controllers](https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/)
6+
implement [dynamic admission controllers](https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/)
77
and [conversion hooks](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning/#webhook-conversion)
88
for Kubernetes in Java.
99

@@ -97,7 +97,7 @@ Note
9797
that [cert manager](https://github.com/java-operator-sdk/admission-controller-framework/blob/e2637a90152bebfca2983ba17268c1f7ec7e9602/samples/quarkus/src/test/java/io/javaoperatorsdk/webhook/sample/QuarkusWebhooksE2E.java#L19-L23)
9898
is used to generate certificates for the application and for configurations.
9999

100-
## Admission Controllers API
100+
## Dynamic Admission Controllers API
101101

102102
There are two types of admission controllers: validation and mutation. Both should be extremely simple to use.
103103

samples/spring-boot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To be precise, this example will install two admission webhooks that watch and m
1010

1111
### Introduction
1212

13-
The admission controllers are installed via either [the ValidatingWebhookConfiguration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.24/#validatingwebhookconfiguration-v1-admissionregistration-k8s-io) resource for validation admission webhooks or [the MutatingWebhooksConfiguration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.24/#mutatingwebhookconfiguration-v1-admissionregistration-k8s-io) resource for mutating admission webhooks. For example, the ValidatingWebhookConfiguration resource looks like:
13+
The dynamic admission controllers are installed via either [the ValidatingWebhookConfiguration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.24/#validatingwebhookconfiguration-v1-admissionregistration-k8s-io) resource for validation admission webhooks or [the MutatingWebhooksConfiguration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.24/#mutatingwebhookconfiguration-v1-admissionregistration-k8s-io) resource for mutating admission webhooks. For example, the ValidatingWebhookConfiguration resource looks like:
1414

1515
```yaml
1616
apiVersion: admissionregistration.k8s.io/v1

0 commit comments

Comments
 (0)