Merge pull request #162 from ckotzbauer/chart-fixes

Several small chart fixes
This commit is contained in:
Daniel Holbach
2020-06-30 18:25:53 +02:00
committed by GitHub
5 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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` |
+12 -12
View File
@@ -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 }}
+1 -1
View File
@@ -24,7 +24,7 @@ spec:
jobLabel: "{{ .Release.Name }}"
selector:
matchLabels:
{{- include "kured.labels" . | nindent 4 }}
{{- include "kured.labels" . | nindent 6 }}
namespaceSelector:
matchNames:
- {{ .Release.Namespace }}
+1 -1
View File
@@ -1,6 +1,6 @@
image:
repository: weaveworks/kured
tag: 1.4.2
tag: 1.4.3
pullPolicy: IfNotPresent
pullSecrets: []