Jenkinsfile Setup Kubernetes 스테이지에 로깅 추가

- Blue Ocean에서 스테이지 상태가 명확히 표시되도록 echo 문 추가
- 시작/완료 로그로 진행 상황 가시성 개선

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
ondal 2025-12-01 13:52:55 +09:00
parent 9dc1bfb926
commit 3d8ee6802c

View File

@ -78,9 +78,11 @@ podTemplate(
stage("Setup Kubernetes") { stage("Setup Kubernetes") {
container('kubectl') { container('kubectl') {
echo "🔧 Setting up Kubernetes namespace: ${props.namespace}"
sh """ sh """
kubectl create namespace ${props.namespace} --dry-run=client -o yaml | kubectl apply -f - kubectl create namespace ${props.namespace} --dry-run=client -o yaml | kubectl apply -f -
""" """
echo "✅ Kubernetes namespace setup completed"
} }
} }