51c70e48df
This PS replaces deprecated kubernetes.io/ingress.class annotation with spec.ingressClassName field that is a reference to an IngressClass resource that contains additional Ingress configuration, including the name of the Ingress controller. https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#deprecating-the-ingress-class-annotation Change-Id: I9953d966b4f9f7b1692b39f36f434f5055317025 Co-authored-by: Sergiy Markin <smarkin@mirantis.com> Co-authored-by: Leointii Istomin <listomin@mirantis.com> Signed-off-by: Anselme, Schubert (sa246v) <sa246v@att.com>
33 lines
1.2 KiB
YAML
33 lines
1.2 KiB
YAML
{{/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- if .Values.manifests.ingressClass }}
|
|
{{- $envAll := . }}
|
|
{{- if empty (index .Values.network.ingress.spec "ingressClassName") }}
|
|
{{- $_ := set .Values.network.ingress.spec "ingressClassName" .Values.deployment.cluster.class -}}
|
|
{{- end }}
|
|
{{- if empty (index .Values.network.ingressClass.spec "controller") }}
|
|
{{- $_ := set .Values.network.ingressClass.spec "controller" .Values.deployment.cluster.controllerClass -}}
|
|
{{- end }}
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: IngressClass
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/component: controller
|
|
name: {{ index $envAll.Values.network.ingress.spec "ingressClassName" | quote }}
|
|
spec:
|
|
controller: {{ index $envAll.Values.network.ingressClass.spec "controller" | quote }}
|
|
{{- end }}
|