From 93c86f0fe33254375421ce4b517e66b85a007442 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 27 Sep 2025 09:46:05 -0500 Subject: [PATCH] ci: Restart production deployment after build --- ci/Jenkinsfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 1d3dd3b..404307f 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -1,4 +1,7 @@ -@Library('containerimages')_ +@Library('containerimages') +@Library('dch') +_ + buildContainerImage2( project: 'packages', archlist: ['amd64', 'arm64'], @@ -8,3 +11,9 @@ buildContainerImage2( memory: '2Gi', ], ) + +stage('Deploy') { + when(env.BRANCH_NAME == "master") { + kubeRestartDeployment(namespace: 'default') + } +}