86 lines
3.9 KiB
Plaintext
86 lines
3.9 KiB
Plaintext
{{/* Print release information */}}
|
||
{{- printf "\n\n" -}}
|
||
{{ .Release.Name }} with {{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }} has been deployed successfully on {{ template "traefik.namespace" . }} namespace !
|
||
{{- printf "\n" -}}
|
||
|
||
|
||
{{/* Warn about potential permission issue with persistence */}}
|
||
{{- if .Values.persistence -}}
|
||
{{- if and .Values.persistence.enabled (empty .Values.deployment.initContainer) -}}
|
||
{{- printf "\n" -}}
|
||
🚨 When enabling persistence for certificates, permissions on acme.json can be
|
||
lost when Traefik restarts. You can ensure correct permissions with an
|
||
initContainer. See https://github.com/traefik/traefik-helm-chart/blob/master/EXAMPLES.md#use-traefik-native-lets-encrypt-integration-without-cert-manager
|
||
for more info. 🚨
|
||
{{- printf "\n" -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
|
||
|
||
{{/* Warn about non-matching potential labelSelector mismatch for CRD provider */}}
|
||
{{- with .Values.providers.kubernetesCRD.labelSelector -}}
|
||
{{- $labelsApplied := include "traefik.labels" $ -}}
|
||
{{- $labelSelectors := regexSplit "," . -1 }}
|
||
{{- range $labelSelectors -}}
|
||
{{- $labelSelectorRaw := regexSplit "=" . -1 -}}
|
||
{{- $labelSelector := printf "%s: %s" (first $labelSelectorRaw) (last $labelSelectorRaw) -}}
|
||
{{- if not (contains $labelSelector $labelsApplied) -}}
|
||
{{- printf "\n" -}}
|
||
🚨 Resources populated with this chart don't match with labelSelector `{{.}}` applied on kubernetesCRD provider 🚨
|
||
{{- printf "\n" -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
|
||
|
||
{{/* Warn about non-matching potential labelSelector mismatch for Ingress provider */}}
|
||
{{- with .Values.providers.kubernetesIngress.labelSelector -}}
|
||
{{- $labelsApplied := include "traefik.labels" $ -}}
|
||
{{- $labelSelectors := regexSplit "," . -1 -}}
|
||
{{- range $labelSelectors -}}
|
||
{{- $labelSelectorRaw := regexSplit "=" . -1 -}}
|
||
{{- $labelSelector := printf "%s: %s" (first $labelSelectorRaw) (last $labelSelectorRaw) -}}
|
||
{{- if not (contains $labelSelector $labelsApplied) -}}
|
||
{{- printf "\n" -}}
|
||
🚨 Resources populated with this chart don't match with labelSelector `{{.}}` applied on kubernetesIngress provider 🚨
|
||
{{- printf "\n" -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
|
||
|
||
{{/* Warn about renamed ports */}}
|
||
{{- range $name, $config := .Values.ports -}}
|
||
{{- $sanitizedPortName := include "traefik.portname" $name -}}
|
||
{{- if (ne $sanitizedPortName $name) -}}
|
||
{{- printf "\n" -}}
|
||
🚨 Port name `{{ $name }}` does not comply with Kubernetes standards and will be renamed to `{{ $sanitizedPortName }}` in services. 🚨
|
||
ℹ️ See the "traefik.portname" helper in this chart for additional details. ℹ️
|
||
{{- printf "\n" -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
|
||
{{/* Warn about hub not watching namespaces configured in providers */}}
|
||
{{- if and .Values.hub.token (and .Values.rbac.enabled .Values.rbac.namespaced) }}
|
||
{{- if .Values.hub.namespaces -}}
|
||
{{- range (list "kubernetesCRD" "kubernetesGateway" "kubernetesIngress") }}
|
||
{{- $provider := . -}}
|
||
{{- $providerNamespaces := get (get $.Values.providers .) "namespaces" -}}
|
||
{{- $providerEnabled := get (get $.Values.providers .) "enabled" -}}
|
||
{{- if $providerEnabled -}}
|
||
{{- if $providerNamespaces -}}
|
||
{{- $difference := (include "list.difference" (dict "a" $providerNamespaces "b" $.Values.hub.namespaces)) | fromYamlArray }}
|
||
{{- if $difference }}
|
||
{{- printf "WARNING: %s provider is configured to watch namespaces %s but those ones are not watched by Hub provider.\n" $provider $difference -}}
|
||
{{- end -}}
|
||
{{- else -}}
|
||
{{- printf "WARNING: %s provider is configured to watch all namespaces but Hub provider only watches %s.\n" $provider $.Values.hub.namespaces -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
|
||
|
||
|