Deploy kured with custom parameters on kubernetes

# Add the Kured Helm repository 
helm repo add kubereboot https://kubereboot.github.io/charts/
# Update your local Helm chart repository cache
helm repo update
# Deploy
helm install my-kured kubereboot/kured \
--namespace kured \
--create-namespace \
--set extraArgs.start-time=9am \
--set extraArgs.end-time=5pm \
--set extraArgs.time-zone=America/Toronto \
--set extraArgs.reboot-days="mon\,tue\,wed\,thu\,fri"

Ref: Handle Linux node reboots with kured — Azure Kubernetes Service | Microsoft Learn

--

--