From 44259e26e4ac4b3f32d0fcba1a55b2bb4c665ec6 Mon Sep 17 00:00:00 2001 From: Catarina Tavares Date: Mon, 20 May 2019 22:36:24 +0100 Subject: [PATCH] Move updateStrategy to the correct location Signed-off-by: Catarina Tavares --- stable/graylog/Chart.yaml | 2 +- stable/graylog/templates/statefulset.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/stable/graylog/Chart.yaml b/stable/graylog/Chart.yaml index e65ee62bf1d9..e498983d7d2d 100755 --- a/stable/graylog/Chart.yaml +++ b/stable/graylog/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: graylog home: https://www.graylog.org -version: 1.1.0 +version: 1.1.1 appVersion: 2.5.1-3 description: Graylog is the centralized log management solution built to open standards for capturing, storing, and enabling real-time analysis of terabytes of machine data. keywords: diff --git a/stable/graylog/templates/statefulset.yaml b/stable/graylog/templates/statefulset.yaml index 50a78af700de..208f771e217a 100644 --- a/stable/graylog/templates/statefulset.yaml +++ b/stable/graylog/templates/statefulset.yaml @@ -16,6 +16,8 @@ spec: app.kubernetes.io/name: {{ template "graylog.name" . }} app.kubernetes.io/instance: "{{ .Release.Name }}" app.kubernetes.io/managed-by: "{{ .Release.Service }}" + updateStrategy: + type: {{ .Values.graylog.updateStrategy }} template: metadata: labels: @@ -36,7 +38,6 @@ spec: {{- end }} spec: serviceAccountName: {{ template "graylog.serviceAccountName" . }} - updateStrategy: {{ .Values.graylog.updateStrategy }} {{- if .Values.graylog.nodeSelector }} nodeSelector: {{ toYaml .Values.graylog.nodeSelector | indent 8 }}