From 6195ac90dab7ec2652b01df1f23ef9a860ea7d2c 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..36a0cbf --- /dev/null +++ b/ci/Jenkinsfile @@ -0,0 +1,8 @@ +@Library('containerimages')_ + +buildContainerImage2(project: 'infra', defaultBranch: 'master', archlist: ['arm64']) +stage('Deploy') { + when(env.BRANCH_NAME == "master") { + kubeRestartDeployment() + } +}