From 9afd5a7ba4a398445ed6189c4961e6d4d15eb4f2 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 8 Aug 2025 11:16:20 -0500 Subject: [PATCH] ci: Add Jenkins build pipeline --- ci/Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ci/Jenkinsfile diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile new file mode 100644 index 0000000..ddb6ec0 --- /dev/null +++ b/ci/Jenkinsfile @@ -0,0 +1,9 @@ +@Library('containerimages') +@Library('dch')_ + +buildContainerImage2(project: 'infra', defaultBranch: 'master', archlist: ['amd64', 'arm64']) +stage('Deploy') { + when(env.BRANCH_NAME == "master") { + kubeRestartDeployment() + } +}