Jenkinsfile에서 kubectl context 설정 제거

- kubectl config use-context 명령 제거 (Jenkins 환경에서 불필요)
- deploy_env_vars_dev에서 context 변수 제거

🤖 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:26:15 +09:00
parent 0f054109bb
commit ab27787951
2 changed files with 0 additions and 2 deletions

View File

@ -79,7 +79,6 @@ podTemplate(
stage("Setup Kubernetes") {
container('kubectl') {
sh """
kubectl config use-context ${props.context}
kubectl create namespace ${props.namespace} --dry-run=client -o yaml | kubectl apply -f -
"""
}

View File

@ -1,3 +1,2 @@
# dev Environment Configuration
context=minikube
namespace=phonebill