From 698c146393e7e8f18f41406f33c5e133aa47d542 Mon Sep 17 00:00:00 2001 From: ondal Date: Mon, 1 Dec 2025 14:29:20 +0900 Subject: [PATCH] =?UTF-8?q?Jenkinsfile=EC=97=90=20Setup=20Kubernetes2=20?= =?UTF-8?q?=EC=8A=A4=ED=85=8C=EC=9D=B4=EC=A7=80=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - namespace 생성 스테이지 복원 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- deployment/cicd/Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/deployment/cicd/Jenkinsfile b/deployment/cicd/Jenkinsfile index 6b73f42..626ad19 100644 --- a/deployment/cicd/Jenkinsfile +++ b/deployment/cicd/Jenkinsfile @@ -76,6 +76,14 @@ podTemplate( props = readProperties file: "deployment/cicd/config/deploy_env_vars_${environment}" } + stage("Setup Kubernetes2") { + container('kubectl') { + sh """ + kubectl create namespace ${props.namespace} --dry-run=client -o yaml | kubectl apply -f - + """ + } + } + stage('Build') { container('gradle') { sh """