From a3aa792bd5d526d9d5d3dda8dbd6ffdb92e57544 Mon Sep 17 00:00:00 2001 From: chrishoerl <39834549+chrishoerl@users.noreply.github.com> Date: Fri, 24 Nov 2023 21:12:37 +0100 Subject: [PATCH] Updated API version Updated API Version of the Kubernetes resource admissionregistration.k8s.io/ from v1beta1 to v1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed859486..a123f017 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,10 @@ is applied, and the user ID defaults to `1234`. ## Prerequisites A cluster on which this example can be tested must be running Kubernetes 1.9.0 or above, -with the `admissionregistration.k8s.io/v1beta1` API enabled. You can verify that by observing that the +with the `admissionregistration.k8s.io/v1` API enabled. You can verify that by observing that the following command produces a non-empty output: ``` -kubectl api-versions | grep admissionregistration.k8s.io/v1beta1 +kubectl api-versions | grep admissionregistration.k8s.io/v1 ``` In addition, the `MutatingAdmissionWebhook` admission controller should be added and listed in the admission-control flag of `kube-apiserver`.