원클릭으로
deploy-dev
Deploy services to the dev EKS namespace via ArgoCD (or kubectl for bootstrap)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy services to the dev EKS namespace via ArgoCD (or kubectl for bootstrap)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Deploy services to the prod EKS namespace via ArgoCD (manual sync) with safety checks
View and troubleshoot service logs and pod status
Review Terraform code for security, best practices, and conventions
Roll back a failed deployment to the previous revision
Run Checkov security scan on Terraform modules
Run health checks against deployed services
| name | deploy-dev |
| description | Deploy services to the dev EKS namespace via ArgoCD (or kubectl for bootstrap) |
| disable-model-invocation | true |
| argument-hint | [service|all] |
Deploy services to the petclinic-dev namespace.
service — Specific service to deploy (e.g., config-server, api-gateway) or allallVerify kubectl context is configured for the dev cluster:
kubectl config current-context
If not configured, run:
aws eks update-kubeconfig --name petclinic-dev --region eu-central-1
Check if ArgoCD is installed:
kubectl get namespace argocd 2>/dev/null
If ArgoCD is installed (standard path):
argocd app sync -l environment=dev
argocd app sync {service}-dev
argocd app wait {service}-dev --timeout 120
If ArgoCD is NOT installed (bootstrap path):
kubectl apply -f k8s/base/namespaces.yaml
for service in config-server discovery-server api-gateway customers-service visits-service vets-service genai-service admin-server; do
helm upgrade --install $service helm/petclinic-service/ \
-f helm-values/$service.yaml \
-f helm-values/dev.yaml \
-n petclinic-dev --create-namespace
done
helm upgrade --install {service} helm/petclinic-service/ \
-f helm-values/{service}.yaml \
-f helm-values/dev.yaml \
-n petclinic-dev
For service startup order (when deploying all):
Monitor rollout status:
kubectl rollout status deployment/{service} -n petclinic-dev --timeout=120s
Show final pod status:
kubectl get pods -n petclinic-dev -o wide
If any pod fails to start, show logs:
kubectl logs deployment/{failing-service} -n petclinic-dev --tail=50
/deploy-prod for production