From 3eb7f17b3a5439f81efa8af279cdeb9dc9009a39 Mon Sep 17 00:00:00 2001 From: Christian Kotzbauer Date: Tue, 30 Jun 2020 18:00:05 +0200 Subject: [PATCH] bumped kured to upcoming 1.4.3 fixed servicemonitor indent fixed quotes for arguments Signed-off-by: Christian Kotzbauer --- charts/kured/Chart.yaml | 4 ++-- charts/kured/README.md | 2 +- charts/kured/templates/daemonset.yaml | 24 +++++++++++----------- charts/kured/templates/servicemonitor.yaml | 2 +- charts/kured/values.yaml | 2 +- 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/charts/kured/Chart.yaml b/charts/kured/Chart.yaml index 9724c4d..b468aea 100644 --- a/charts/kured/Chart.yaml +++ b/charts/kured/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: "1.4.2" +appVersion: "1.4.3" description: A Helm chart for kured name: kured -version: 2.0.0 +version: 2.0.1 home: https://github.com/weaveworks/kured maintainers: - name: dholbach diff --git a/charts/kured/README.md b/charts/kured/README.md index fe47aa7..5c4fffb 100644 --- a/charts/kured/README.md +++ b/charts/kured/README.md @@ -36,7 +36,7 @@ The following changes have been made compared to the stable chart: | Config | Description | Default | | ------ | ----------- | ------- | | `image.repository` | Image repository | `weaveworks/kured` | -| `image.tag` | Image tag | `1.4.2` | +| `image.tag` | Image tag | `1.4.3` | | `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `image.pullSecrets` | Image pull secrets | `[]` | | `updateStrategy` | Daemonset update strategy | `OnDelete` | diff --git a/charts/kured/templates/daemonset.yaml b/charts/kured/templates/daemonset.yaml index feb2d72..21af7e1 100644 --- a/charts/kured/templates/daemonset.yaml +++ b/charts/kured/templates/daemonset.yaml @@ -52,40 +52,40 @@ spec: - --alert-filter-regexp={{ .Values.configuration.alertFilterRegexp | quote }} {{- end }} {{- range .Values.configuration.blockingPodSelector }} - - --blocking-pod-selector={{ . | quote }} + - --blocking-pod-selector={{ . }} {{- end }} {{- if .Values.configuration.endTime }} - - --end-time={{ .Values.configuration.endTime | quote }} + - --end-time={{ .Values.configuration.endTime }} {{- end }} {{- if .Values.configuration.lockAnnotation }} - - --lock-annotation={{ .Values.configuration.lockAnnotation | quote }} + - --lock-annotation={{ .Values.configuration.lockAnnotation }} {{- end }} {{- if .Values.configuration.period }} - - --period={{ .Values.configuration.period | quote }} + - --period={{ .Values.configuration.period }} {{- end }} {{- if .Values.configuration.prometheusUrl }} - - --prometheus-url={{ .Values.configuration.prometheusUrl | quote }} + - --prometheus-url={{ .Values.configuration.prometheusUrl }} {{- end }} {{- range .Values.configuration.rebootDays }} - - --reboot-days={{ . | quote }} + - --reboot-days={{ . }} {{- end }} {{- if .Values.configuration.rebootSentinel }} - - --reboot-sentinel={{ .Values.configuration.rebootSentinel | quote }} + - --reboot-sentinel={{ .Values.configuration.rebootSentinel }} {{- end }} {{- if .Values.configuration.slackChannel }} - - --slack-channel={{ .Values.configuration.slackChannel | quote }} + - --slack-channel={{ .Values.configuration.slackChannel }} {{- end }} {{- if .Values.configuration.slackHookUrl }} - - --slack-hook-url={{ .Values.configuration.slackHookUrl | quote }} + - --slack-hook-url={{ .Values.configuration.slackHookUrl }} {{- end }} {{- if .Values.configuration.slackUsername }} - - --slack-username={{ .Values.configuration.slackUsername | quote }} + - --slack-username={{ .Values.configuration.slackUsername }} {{- end }} {{- if .Values.configuration.startTime }} - - --start-time={{ .Values.configuration.startTime | quote }} + - --start-time={{ .Values.configuration.startTime }} {{- end }} {{- if .Values.configuration.timeZone }} - - --time-zone={{ .Values.configuration.timeZone | quote }} + - --time-zone={{ .Values.configuration.timeZone }} {{- end }} {{- range $key, $value := .Values.extraArgs }} {{- if $value }} diff --git a/charts/kured/templates/servicemonitor.yaml b/charts/kured/templates/servicemonitor.yaml index b13682f..bf868f9 100644 --- a/charts/kured/templates/servicemonitor.yaml +++ b/charts/kured/templates/servicemonitor.yaml @@ -24,7 +24,7 @@ spec: jobLabel: "{{ .Release.Name }}" selector: matchLabels: - {{- include "kured.labels" . | nindent 4 }} + {{- include "kured.labels" . | nindent 6 }} namespaceSelector: matchNames: - {{ .Release.Namespace }} diff --git a/charts/kured/values.yaml b/charts/kured/values.yaml index 0e0f786..805079a 100644 --- a/charts/kured/values.yaml +++ b/charts/kured/values.yaml @@ -1,6 +1,6 @@ image: repository: weaveworks/kured - tag: 1.4.2 + tag: 1.4.3 pullPolicy: IfNotPresent pullSecrets: []