From 8946ec1f0f131f8670af4c89cd2c53d932801d6d 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 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ci/Jenkinsfile diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile new file mode 100644 index 0000000..27fc583 --- /dev/null +++ b/ci/Jenkinsfile @@ -0,0 +1,8 @@ +@Library('containerimages')_ + +buildContainerImage2(project: 'infra', defaultBranch: 'master', archlist: ['amd64', 'arm64']) +stage('Deploy') { + when(env.BRANCH_NAME == "master") { + kubeRestartDeployment() + } +}