Skip to content

Commit b95944c

Browse files
committed
RELEASE/MINOR: kubernetes-ingress: Tag release 1.29.2
Changes in kubernetes-ingress: - Allow disabling enableServiceLinks (#179) Signed-off-by: Dinko Korunic <[email protected]>
1 parent 47f8349 commit b95944c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

kubernetes-ingress/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apiVersion: v2
1616
name: kubernetes-ingress
1717
description: A Helm chart for HAProxy Kubernetes Ingress Controller
1818
type: application
19-
version: 1.29.1
19+
version: 1.29.2
2020
appVersion: 1.9.5
2121
kubeVersion: ">=1.19.0-0"
2222
keywords:
@@ -32,4 +32,4 @@ maintainers:
3232
engine: gotpl
3333
annotations:
3434
artifacthub.io/changes: |
35-
- Use Ingress Controller 1.9.5 version for base image
35+
- Allow disabling enableServiceLinks (#179)

kubernetes-ingress/templates/controller-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
{{ toYaml .Values.controller.podAnnotations | indent 8 }}
5656
{{- end }}
5757
spec:
58-
enableServiceLinks: {{ default true .Values.controller.enableServiceLinks }}
58+
enableServiceLinks: {{ .Values.controller.enableServiceLinks }}
5959
serviceAccountName: {{ template "kubernetes-ingress.serviceAccountName" . }}
6060
terminationGracePeriodSeconds: {{ .Values.controller.terminationGracePeriodSeconds }}
6161
{{- if $useHostNetwork }}

kubernetes-ingress/templates/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
{{ toYaml .Values.controller.podAnnotations | indent 8 }}
5656
{{- end }}
5757
spec:
58-
enableServiceLinks: {{ default true .Values.controller.enableServiceLinks }}
58+
enableServiceLinks: {{ .Values.controller.enableServiceLinks }}
5959
serviceAccountName: {{ template "kubernetes-ingress.serviceAccountName" . }}
6060
terminationGracePeriodSeconds: {{ .Values.controller.terminationGracePeriodSeconds }}
6161
{{- with .Values.controller.topologySpreadConstraints }}

0 commit comments

Comments
 (0)