From 291078f425439e5bb345acbbe249c580e604eb7f Mon Sep 17 00:00:00 2001 From: Robin Ketelbuters Date: Thu, 10 Jan 2019 13:55:55 +0100 Subject: [PATCH] [stable/nginx-ingress] Remove checksum/config from DaemonSet template (#10458) * [stable/nginx-ingress] Remove checksum/config from DaemonSet template The DaemonSet template still has a checksum/config annotation to trigger a rollout of the Ingress Controllers after a config change. Recreating the controllers after a configmap change is not necessary, and this annotation was already removed from the Deployment template in https://github.com/helm/charts/pull/5199. Signed-off-by: Robin Ketelbuters * [stable/nginx-ingress] Bump version Signed-off-by: Robin Ketelbuters * Bump version Signed-off-by: Robin Ketelbuters --- stable/nginx-ingress/Chart.yaml | 2 +- stable/nginx-ingress/templates/controller-daemonset.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/stable/nginx-ingress/Chart.yaml b/stable/nginx-ingress/Chart.yaml index 760863001a..95bc679927 100644 --- a/stable/nginx-ingress/Chart.yaml +++ b/stable/nginx-ingress/Chart.yaml @@ -1,5 +1,5 @@ name: nginx-ingress -version: 1.1.3 +version: 1.1.4 appVersion: 0.21.0 home: https://github.com/kubernetes/ingress-nginx description: An nginx Ingress controller that uses ConfigMap to store the nginx configuration. diff --git a/stable/nginx-ingress/templates/controller-daemonset.yaml b/stable/nginx-ingress/templates/controller-daemonset.yaml index 82e95e4bf2..f4c0223f0a 100644 --- a/stable/nginx-ingress/templates/controller-daemonset.yaml +++ b/stable/nginx-ingress/templates/controller-daemonset.yaml @@ -17,7 +17,6 @@ spec: template: metadata: annotations: - checksum/config: {{ include (print $.Template.BasePath "/controller-configmap.yaml") . | sha256sum }} {{- range $key, $value := .Values.controller.podAnnotations }} {{ $key }}: {{ $value | quote }} {{- end }}