Skip to content

Commit d7f7e16

Browse files
authored
Merge pull request #5770 from aledbf/webhook
Use admissionregistration.k8s.io/v1beta1 to be k8s < 1.16 compatible
2 parents a1b88e3 + a57d912 commit d7f7e16

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

charts/ingress-nginx/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: ingress-nginx
3-
version: 2.7.1
3+
version: 2.8.0
44
appVersion: 0.33.0
55
home: https://github.com/kubernetes/ingress-nginx
66
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer

charts/ingress-nginx/templates/admission-webhooks/validating-webhook.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{{- if .Values.controller.admissionWebhooks.enabled -}}
2-
apiVersion: admissionregistration.k8s.io/v1
2+
# before changing this value, check the required kubernetes version
3+
# https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#prerequisites
4+
apiVersion: admissionregistration.k8s.io/v1beta1
35
kind: ValidatingWebhookConfiguration
46
metadata:
57
labels:

0 commit comments

Comments
 (0)