From 07be7027f43ae1ddb5a60806cdbbf8ad655e610e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 12 Oct 2025 10:31:28 -0500 Subject: [PATCH] ci: Restart DaemonSet after build The new `kubeRolloutRestart` function works similarly to the `kubeRestartDeployment` function, but supports any kind of pod controller, including DaemonSet. --- ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 404307f..8b2d6a3 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -14,6 +14,6 @@ buildContainerImage2( stage('Deploy') { when(env.BRANCH_NAME == "master") { - kubeRestartDeployment(namespace: 'default') + kubeRolloutRestart(kind: 'daemonset', namespace: 'default') } }