From 868b2ea6e6d8cfa2ad8d184e38cef78ce04e2a4f Mon Sep 17 00:00:00 2001 From: Matthieu Paret Date: Wed, 5 Sep 2018 15:09:43 +0200 Subject: [PATCH] [stable/grafana] fix deployment strategy (#7437) If deployment strategy is not RollingUpdate, rollingUpdate has to be specified to null explicitly. Signed-off-by: --replace-all --- stable/grafana/Chart.yaml | 2 +- stable/grafana/templates/deployment.yaml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/stable/grafana/Chart.yaml b/stable/grafana/Chart.yaml index 12cb084c7d..960c123f16 100755 --- a/stable/grafana/Chart.yaml +++ b/stable/grafana/Chart.yaml @@ -1,5 +1,5 @@ name: grafana -version: 1.14.3 +version: 1.14.4 appVersion: 5.2.3 kubeVersion: "^1.8.0-0" description: The leading tool for querying and visualizing time series and metrics. diff --git a/stable/grafana/templates/deployment.yaml b/stable/grafana/templates/deployment.yaml index 93f8ad87ab..2a1fa7da44 100644 --- a/stable/grafana/templates/deployment.yaml +++ b/stable/grafana/templates/deployment.yaml @@ -19,6 +19,9 @@ spec: release: {{ .Release.Name }} strategy: type: {{ .Values.deploymentStrategy }} + {{- if ne .Values.deploymentStrategy "RollingUpdate" }} + rollingUpdate: null + {{- end }} template: metadata: labels: