ci: Restart DaemonSet after build
All checks were successful
dustin/k8s-reboot-coordinator/pipeline/head This commit looks good

The new `kubeRolloutRestart` function works similarly to the
`kubeRestartDeployment` function, but supports any kind of pod
controller, including DaemonSet.
This commit is contained in:
2025-10-12 10:31:28 -05:00
parent 46b26199b0
commit 07be7027f4

2
ci/Jenkinsfile vendored
View File

@@ -14,6 +14,6 @@ buildContainerImage2(
stage('Deploy') {
when(env.BRANCH_NAME == "master") {
kubeRestartDeployment(namespace: 'default')
kubeRolloutRestart(kind: 'daemonset', namespace: 'default')
}
}