一键导入
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