123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- {{/* 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 -}}
|