From 3d8ee6802cf022ca1f66f8a50c6970a689f87061 Mon Sep 17 00:00:00 2001 From: ondal Date: Mon, 1 Dec 2025 13:52:55 +0900 Subject: [PATCH] =?UTF-8?q?Jenkinsfile=20Setup=20Kubernetes=20=EC=8A=A4?= =?UTF-8?q?=ED=85=8C=EC=9D=B4=EC=A7=80=EC=97=90=20=EB=A1=9C=EA=B9=85=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Blue Ocean에서 스테이지 상태가 명확히 표시되도록 echo 문 추가 - 시작/완료 로그로 진행 상황 가시성 개선 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- deployment/cicd/Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deployment/cicd/Jenkinsfile b/deployment/cicd/Jenkinsfile index 59a0333..200cdc3 100644 --- a/deployment/cicd/Jenkinsfile +++ b/deployment/cicd/Jenkinsfile @@ -78,9 +78,11 @@ podTemplate( stage("Setup Kubernetes") { container('kubectl') { + echo "🔧 Setting up Kubernetes namespace: ${props.namespace}" sh """ kubectl create namespace ${props.namespace} --dry-run=client -o yaml | kubectl apply -f - """ + echo "✅ Kubernetes namespace setup completed" } }