Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/kured/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "1.23.0"
description: A Helm chart for kured
name: kured
version: 6.1.0
version: 6.2.0
home: https://github.com/kubereboot/kured
maintainers:
- name: chopf
Expand Down
1 change: 1 addition & 0 deletions charts/kured/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ The following changes have been made compared to the stable chart:
| `priorityClassName` | Priority Class to be used by the pods | `""` |
| `tolerations` | Tolerations to apply to the daemonset (eg to allow running on master) | `[{"key": "node-role.kubernetes.io/control-plane", "effect": "NoSchedule"}]` for Kubernetes 1.24.0 and greater, otherwise `[{"key": "node-role.kubernetes.io/master", "effect": "NoSchedule"}]`|
| `affinity` | Affinity for the daemonset (ie, restrict which nodes kured runs on) | `{}` |
| `topologySpreadConstraints` | Topology spread constraints for the daemonset pods | `[]` |
| `hostNetwork` | Pod uses the host network instead of the cluster network | `false` |
| `nodeSelector` | Node Selector for the daemonset (ie, restrict which nodes kured runs on) | `{ "kubernetes.io/os": "linux" }` |
| `volumeMounts` | Maps of volumes mount to mount | `{}` |
Expand Down
4 changes: 4 additions & 0 deletions charts/kured/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,10 @@ spec:
{{- end }}
{{- with .Values.affinity }}
affinity:
{{ toYaml . | indent 8 }}
{{- end }}
{{- with .Values.topologySpreadConstraints }}
topologySpreadConstraints:
{{ toYaml . | indent 8 }}
{{- end }}
{{- if or .Values.volumes .Values.configuration.useRebootSentinelHostPath }}
Expand Down
2 changes: 2 additions & 0 deletions charts/kured/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ tolerations: []

affinity: {}

topologySpreadConstraints: []

nodeSelector:
kubernetes.io/os: linux

Expand Down
Loading