diff --git a/charts/kured/Chart.yaml b/charts/kured/Chart.yaml index 0be27a2..920040d 100644 --- a/charts/kured/Chart.yaml +++ b/charts/kured/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: "1.6.1" +appVersion: "1.7.0" description: A Helm chart for kured name: kured -version: 2.4.3 +version: 2.5.0 home: https://github.com/weaveworks/kured maintainers: - name: ckotzbauer diff --git a/charts/kured/README.md b/charts/kured/README.md index 3b4b7b8..1d94c39 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.6.1` | +| `image.tag` | Image tag | `1.7.0` | | `image.pullPolicy` | Image pull policy | `IfNotPresent` | | `image.pullSecrets` | Image pull secrets | `[]` | | `updateStrategy` | Daemonset update strategy | `OnDelete` | @@ -56,6 +56,7 @@ The following changes have been made compared to the stable chart: | `configuration.slackChannel` | cli-parameter `--slack-channel` | `""` | | `configuration.slackHookUrl` | cli-parameter `--slack-hook-url` | `""` | | `configuration.slackUsername` | cli-parameter `--slack-username` | `""` | +| `configuration.notifyUrl` | cli-parameter `--notify-url` | `""` | | `configuration.messageTemplateDrain` | cli-parameter `--message-template-drain` | `""` | | `configuration.messageTemplateReboot` | cli-parameter `--message-template-reboot` | `""` | | `configuration.startTime` | cli-parameter `--start-time` | `""` | diff --git a/charts/kured/templates/daemonset.yaml b/charts/kured/templates/daemonset.yaml index c2a6b97..1444f62 100644 --- a/charts/kured/templates/daemonset.yaml +++ b/charts/kured/templates/daemonset.yaml @@ -88,6 +88,9 @@ spec: {{- if .Values.configuration.slackUsername }} - --slack-username={{ .Values.configuration.slackUsername }} {{- end }} + {{- if .Values.configuration.notifyUrl }} + - --notify-url={{ .Values.configuration.notifyUrl }} + {{- end }} {{- if .Values.configuration.messageTemplateDrain }} - --message-template-drain={{ .Values.configuration.messageTemplateDrain }} {{- end }} diff --git a/charts/kured/values.minikube.yaml b/charts/kured/values.minikube.yaml index cf4a554..50dd11d 100644 --- a/charts/kured/values.minikube.yaml +++ b/charts/kured/values.minikube.yaml @@ -15,6 +15,7 @@ configuration: # slackChannel: "" # slack channel for reboot notfications # slackHookUrl: "" # slack hook URL for reboot notfications # slackUsername: "" # slack username for reboot notfications (default "kured") + # notifyUrl: "" # notification URL with the syntax as follows: https://containrrr.dev/shoutrrr/services/overview/ # messageTemplateDrain: "" # slack message template when notifying about a node being drained (default "Draining node %s") # messageTemplateReboot: "" # slack message template when notifying about a node being rebooted (default "Rebooted node %s") # startTime: "" # only reboot after this time of day (default "0:00") diff --git a/charts/kured/values.yaml b/charts/kured/values.yaml index 280e77b..1c61e20 100644 --- a/charts/kured/values.yaml +++ b/charts/kured/values.yaml @@ -34,6 +34,7 @@ configuration: slackChannel: "" # slack channel for reboot notfications slackHookUrl: "" # slack hook URL for reboot notfications slackUsername: "" # slack username for reboot notfications (default "kured") + notifyUrl: "" # notification URL with the syntax as follows: https://containrrr.dev/shoutrrr/services/overview/ messageTemplateDrain: "" # slack message template when notifying about a node being drained (default "Draining node %s") messageTemplateReboot: "" # slack message template when notifying about a node being rebooted (default "Rebooted node %s") startTime: "" # only reboot after this time of day (default "0:00")