-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vendar ingress-nginx chart version 4.4.0
Signed-off-by: Hervé Werner <[email protected]>
- Loading branch information
Showing
52 changed files
with
4,317 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: v2 | ||
appVersion: 1.5.1 | ||
description: | ||
Ingress controller for Kubernetes using NGINX as a reverse proxy and | ||
load balancer | ||
home: https://github.com/kubernetes/ingress-nginx | ||
icon: https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Nginx_logo.svg/500px-Nginx_logo.svg.png | ||
keywords: | ||
- ingress | ||
- nginx | ||
kubeVersion: ">=1.20.0-0" | ||
maintainers: | ||
- name: rikatz | ||
- name: strongjz | ||
- name: tao12345666333 | ||
name: ingress-nginx | ||
sources: | ||
- https://github.com/kubernetes/ingress-nginx | ||
version: 4.4.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
The ingress-nginx controller has been installed. | ||
|
||
{{- if contains "NodePort" .Values.controller.service.type }} | ||
Get the application URL by running these commands: | ||
|
||
{{- if (not (empty .Values.controller.service.nodePorts.http)) }} | ||
export HTTP_NODE_PORT={{ .Values.controller.service.nodePorts.http }} | ||
{{- else }} | ||
export HTTP_NODE_PORT=$(kubectl --namespace {{ .Release.Namespace }} get services -o jsonpath="{.spec.ports[0].nodePort}" {{ include "ingress-nginx.controller.fullname" . }}) | ||
{{- end }} | ||
{{- if (not (empty .Values.controller.service.nodePorts.https)) }} | ||
export HTTPS_NODE_PORT={{ .Values.controller.service.nodePorts.https }} | ||
{{- else }} | ||
export HTTPS_NODE_PORT=$(kubectl --namespace {{ .Release.Namespace }} get services -o jsonpath="{.spec.ports[1].nodePort}" {{ include "ingress-nginx.controller.fullname" . }}) | ||
{{- end }} | ||
export NODE_IP=$(kubectl --namespace {{ .Release.Namespace }} get nodes -o jsonpath="{.items[0].status.addresses[1].address}") | ||
|
||
echo "Visit http://$NODE_IP:$HTTP_NODE_PORT to access your application via HTTP." | ||
echo "Visit https://$NODE_IP:$HTTPS_NODE_PORT to access your application via HTTPS." | ||
{{- else if contains "LoadBalancer" .Values.controller.service.type }} | ||
It may take a few minutes for the LoadBalancer IP to be available. | ||
You can watch the status by running 'kubectl --namespace {{ .Release.Namespace }} get services -o wide -w {{ include "ingress-nginx.controller.fullname" . }}' | ||
{{- else if contains "ClusterIP" .Values.controller.service.type }} | ||
Get the application URL by running these commands: | ||
export POD_NAME=$(kubectl --namespace {{ .Release.Namespace }} get pods -o jsonpath="{.items[0].metadata.name}" -l "app={{ template "ingress-nginx.name" . }},component={{ .Values.controller.name }},release={{ .Release.Name }}") | ||
kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80 | ||
echo "Visit http://127.0.0.1:8080 to access your application." | ||
{{- end }} | ||
|
||
An example Ingress that makes use of the controller: | ||
|
||
{{- $isV1 := semverCompare ">=1" .Chart.AppVersion}} | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: example | ||
namespace: foo | ||
{{- if eq $isV1 false }} | ||
annotations: | ||
kubernetes.io/ingress.class: {{ .Values.controller.ingressClass }} | ||
{{- end }} | ||
spec: | ||
{{- if $isV1 }} | ||
ingressClassName: {{ .Values.controller.ingressClassResource.name }} | ||
{{- end }} | ||
rules: | ||
- host: www.example.com | ||
http: | ||
paths: | ||
- pathType: Prefix | ||
backend: | ||
service: | ||
name: exampleService | ||
port: | ||
number: 80 | ||
path: / | ||
# This section is only required if TLS is to be enabled for the Ingress | ||
tls: | ||
- hosts: | ||
- www.example.com | ||
secretName: example-tls | ||
|
||
If TLS is enabled for the Ingress, a Secret containing the certificate and key must also be provided: | ||
|
||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: example-tls | ||
namespace: foo | ||
data: | ||
tls.crt: <base64 encoded cert> | ||
tls.key: <base64 encoded key> | ||
type: kubernetes.io/tls | ||
|
||
{{- if .Values.controller.headers }} | ||
################################################################################# | ||
###### WARNING: `controller.headers` has been deprecated! ##### | ||
###### It has been renamed to `controller.proxySetHeaders`. ##### | ||
################################################################################# | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
{{/* vim: set filetype=mustache: */}} | ||
{{/* | ||
Expand the name of the chart. | ||
*/}} | ||
{{- define "ingress-nginx.name" -}} | ||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create chart name and version as used by the chart label. | ||
*/}} | ||
{{- define "ingress-nginx.chart" -}} | ||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified app name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
*/}} | ||
{{- define "ingress-nginx.fullname" -}} | ||
{{- if .Values.fullnameOverride -}} | ||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} | ||
{{- else -}} | ||
{{- $name := default .Chart.Name .Values.nameOverride -}} | ||
{{- if contains $name .Release.Name -}} | ||
{{- .Release.Name | trunc 63 | trimSuffix "-" -}} | ||
{{- else -}} | ||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
|
||
{{/* | ||
Container SecurityContext. | ||
*/}} | ||
{{- define "controller.containerSecurityContext" -}} | ||
{{- if .Values.controller.containerSecurityContext -}} | ||
{{- toYaml .Values.controller.containerSecurityContext -}} | ||
{{- else -}} | ||
capabilities: | ||
drop: | ||
- ALL | ||
add: | ||
- NET_BIND_SERVICE | ||
{{- if .Values.controller.image.chroot }} | ||
- SYS_CHROOT | ||
{{- end }} | ||
runAsUser: {{ .Values.controller.image.runAsUser }} | ||
allowPrivilegeEscalation: {{ .Values.controller.image.allowPrivilegeEscalation }} | ||
{{- end }} | ||
{{- end -}} | ||
|
||
{{/* | ||
Get specific image | ||
*/}} | ||
{{- define "ingress-nginx.image" -}} | ||
{{- if .chroot -}} | ||
{{- printf "%s-chroot" .image -}} | ||
{{- else -}} | ||
{{- printf "%s" .image -}} | ||
{{- end }} | ||
{{- end -}} | ||
|
||
{{/* | ||
Get specific image digest | ||
*/}} | ||
{{- define "ingress-nginx.imageDigest" -}} | ||
{{- if .chroot -}} | ||
{{- if .digestChroot -}} | ||
{{- printf "@%s" .digestChroot -}} | ||
{{- end }} | ||
{{- else -}} | ||
{{ if .digest -}} | ||
{{- printf "@%s" .digest -}} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified controller name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
*/}} | ||
{{- define "ingress-nginx.controller.fullname" -}} | ||
{{- printf "%s-%s" (include "ingress-nginx.fullname" .) .Values.controller.name | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Construct a unique electionID. | ||
Users can provide an override for an explicit electionID if they want via `.Values.controller.electionID` | ||
*/}} | ||
{{- define "ingress-nginx.controller.electionID" -}} | ||
{{- $defElectionID := printf "%s-leader" (include "ingress-nginx.fullname" .) -}} | ||
{{- $electionID := default $defElectionID .Values.controller.electionID -}} | ||
{{- print $electionID -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Construct the path for the publish-service. | ||
By convention this will simply use the <namespace>/<controller-name> to match the name of the | ||
service generated. | ||
Users can provide an override for an explicit service they want bound via `.Values.controller.publishService.pathOverride` | ||
*/}} | ||
{{- define "ingress-nginx.controller.publishServicePath" -}} | ||
{{- $defServiceName := printf "%s/%s" "$(POD_NAMESPACE)" (include "ingress-nginx.controller.fullname" .) -}} | ||
{{- $servicePath := default $defServiceName .Values.controller.publishService.pathOverride }} | ||
{{- print $servicePath | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified default backend name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
*/}} | ||
{{- define "ingress-nginx.defaultBackend.fullname" -}} | ||
{{- printf "%s-%s" (include "ingress-nginx.fullname" .) .Values.defaultBackend.name | trunc 63 | trimSuffix "-" -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Common labels | ||
*/}} | ||
{{- define "ingress-nginx.labels" -}} | ||
helm.sh/chart: {{ include "ingress-nginx.chart" . }} | ||
{{ include "ingress-nginx.selectorLabels" . }} | ||
{{- if .Chart.AppVersion }} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
{{- end }} | ||
app.kubernetes.io/part-of: {{ template "ingress-nginx.name" . }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
{{- if .Values.commonLabels}} | ||
{{ toYaml .Values.commonLabels }} | ||
{{- end }} | ||
{{- end -}} | ||
|
||
{{/* | ||
Selector labels | ||
*/}} | ||
{{- define "ingress-nginx.selectorLabels" -}} | ||
app.kubernetes.io/name: {{ include "ingress-nginx.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create the name of the controller service account to use | ||
*/}} | ||
{{- define "ingress-nginx.serviceAccountName" -}} | ||
{{- if .Values.serviceAccount.create -}} | ||
{{ default (include "ingress-nginx.fullname" .) .Values.serviceAccount.name }} | ||
{{- else -}} | ||
{{ default "default" .Values.serviceAccount.name }} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Create the name of the backend service account to use - only used when podsecuritypolicy is also enabled | ||
*/}} | ||
{{- define "ingress-nginx.defaultBackend.serviceAccountName" -}} | ||
{{- if .Values.defaultBackend.serviceAccount.create -}} | ||
{{ default (printf "%s-backend" (include "ingress-nginx.fullname" .)) .Values.defaultBackend.serviceAccount.name }} | ||
{{- else -}} | ||
{{ default "default-backend" .Values.defaultBackend.serviceAccount.name }} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Return the appropriate apiGroup for PodSecurityPolicy. | ||
*/}} | ||
{{- define "podSecurityPolicy.apiGroup" -}} | ||
{{- if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} | ||
{{- print "policy" -}} | ||
{{- else -}} | ||
{{- print "extensions" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
Check the ingress controller version tag is at most three versions behind the last release | ||
*/}} | ||
{{- define "isControllerTagValid" -}} | ||
{{- if not (semverCompare ">=0.27.0-0" .Values.controller.image.tag) -}} | ||
{{- fail "Controller container image tag should be 0.27.0 or higher" -}} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{/* | ||
IngressClass parameters. | ||
*/}} | ||
{{- define "ingressClass.parameters" -}} | ||
{{- if .Values.controller.ingressClassResource.parameters -}} | ||
parameters: | ||
{{ toYaml .Values.controller.ingressClassResource.parameters | indent 4}} | ||
{{ end }} | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{{- define "ingress-nginx.params" -}} | ||
- /nginx-ingress-controller | ||
{{- if .Values.defaultBackend.enabled }} | ||
- --default-backend-service=$(POD_NAMESPACE)/{{ include "ingress-nginx.defaultBackend.fullname" . }} | ||
{{- end }} | ||
{{- if and .Values.controller.publishService.enabled .Values.controller.service.enabled }} | ||
{{- if .Values.controller.service.external.enabled }} | ||
- --publish-service={{ template "ingress-nginx.controller.publishServicePath" . }} | ||
{{- else if .Values.controller.service.internal.enabled }} | ||
- --publish-service={{ template "ingress-nginx.controller.publishServicePath" . }}-internal | ||
{{- end }} | ||
{{- end }} | ||
- --election-id={{ include "ingress-nginx.controller.electionID" . }} | ||
- --controller-class={{ .Values.controller.ingressClassResource.controllerValue }} | ||
{{- if .Values.controller.ingressClass }} | ||
- --ingress-class={{ .Values.controller.ingressClass }} | ||
{{- end }} | ||
- --configmap={{ default "$(POD_NAMESPACE)" .Values.controller.configMapNamespace }}/{{ include "ingress-nginx.controller.fullname" . }} | ||
{{- if .Values.tcp }} | ||
- --tcp-services-configmap={{ default "$(POD_NAMESPACE)" .Values.controller.tcp.configMapNamespace }}/{{ include "ingress-nginx.fullname" . }}-tcp | ||
{{- end }} | ||
{{- if .Values.udp }} | ||
- --udp-services-configmap={{ default "$(POD_NAMESPACE)" .Values.controller.udp.configMapNamespace }}/{{ include "ingress-nginx.fullname" . }}-udp | ||
{{- end }} | ||
{{- if .Values.controller.scope.enabled }} | ||
- --watch-namespace={{ default "$(POD_NAMESPACE)" .Values.controller.scope.namespace }} | ||
{{- end }} | ||
{{- if and (not .Values.controller.scope.enabled) .Values.controller.scope.namespaceSelector }} | ||
- --watch-namespace-selector={{ default "" .Values.controller.scope.namespaceSelector }} | ||
{{- end }} | ||
{{- if and .Values.controller.reportNodeInternalIp .Values.controller.hostNetwork }} | ||
- --report-node-internal-ip-address={{ .Values.controller.reportNodeInternalIp }} | ||
{{- end }} | ||
{{- if .Values.controller.admissionWebhooks.enabled }} | ||
- --validating-webhook=:{{ .Values.controller.admissionWebhooks.port }} | ||
- --validating-webhook-certificate={{ .Values.controller.admissionWebhooks.certificate }} | ||
- --validating-webhook-key={{ .Values.controller.admissionWebhooks.key }} | ||
{{- end }} | ||
{{- if .Values.controller.maxmindLicenseKey }} | ||
- --maxmind-license-key={{ .Values.controller.maxmindLicenseKey }} | ||
{{- end }} | ||
{{- if .Values.controller.healthCheckHost }} | ||
- --healthz-host={{ .Values.controller.healthCheckHost }} | ||
{{- end }} | ||
{{- if not (eq .Values.controller.healthCheckPath "/healthz") }} | ||
- --health-check-path={{ .Values.controller.healthCheckPath }} | ||
{{- end }} | ||
{{- if .Values.controller.ingressClassByName }} | ||
- --ingress-class-by-name=true | ||
{{- end }} | ||
{{- if .Values.controller.watchIngressWithoutClass }} | ||
- --watch-ingress-without-class=true | ||
{{- end }} | ||
{{- range $key, $value := .Values.controller.extraArgs }} | ||
{{- /* Accept keys without values or with false as value */}} | ||
{{- if eq ($value | quote | len) 2 }} | ||
- --{{ $key }} | ||
{{- else }} | ||
- --{{ $key }}={{ $value }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end -}} |
Oops, something went wrong.