Update chart requirements

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-09-15 10:21:36 -03:00
parent 4dd206b31a
commit 27598b5f90
11 changed files with 190 additions and 184 deletions

View file

@ -1,6 +1,6 @@
apiVersion: v1
name: ingress-nginx
version: 2.16.0
version: 3.0.0
appVersion: 0.35.0
home: https://github.com/kubernetes/ingress-nginx
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
@ -13,4 +13,4 @@ sources:
maintainers:
- name: ChiefAlexander
engine: gotpl
kubeVersion: ">=1.10.0-0"
kubeVersion: ">=1.16.0-0"

View file

@ -8,7 +8,7 @@ This chart bootstraps an ingress-nginx deployment on a [Kubernetes](http://kuber
## Prerequisites
- Kubernetes 1.6+
- Kubernetes v1.16+
## Get Repo Info

View file

@ -1,7 +1,7 @@
{{- if .Values.controller.admissionWebhooks.enabled -}}
# before changing this value, check the required kubernetes version
# https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#prerequisites
apiVersion: admissionregistration.k8s.io/v1beta1
apiVersion: admissionregistration.k8s.io/v1
kind: ValidatingWebhookConfiguration
metadata:
labels:
@ -12,10 +12,10 @@ webhooks:
- name: validate.nginx.ingress.kubernetes.io
rules:
- apiGroups:
- extensions
- networking.k8s.io
apiVersions:
- v1beta1
- v1
operations:
- CREATE
- UPDATE
@ -25,10 +25,9 @@ webhooks:
sideEffects: None
admissionReviewVersions:
- v1
- v1beta1
clientConfig:
service:
namespace: {{ .Release.Namespace }}
name: {{ include "ingress-nginx.controller.fullname" . }}-admission
path: /extensions/v1beta1/ingresses
path: /networking/v1beta1/ingresses
{{- end }}

View file

@ -293,7 +293,7 @@ controller:
## Enable mimalloc as a drop-in replacement for malloc.
## ref: https://github.com/microsoft/mimalloc
##
enableMimalloc: false
enableMimalloc: true
## Override NGINX template
customTemplate:
@ -423,7 +423,7 @@ controller:
enabled: true
image:
repository: docker.io/jettech/kube-webhook-certgen
tag: v1.2.2
tag: v1.3.0
pullPolicy: IfNotPresent
## Provide a priority class name to the webhook patching job
##