ワンクリックで
deploy-prod
Deploy services to the prod EKS namespace via ArgoCD (manual sync) with safety checks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deploy services to the prod EKS namespace via ArgoCD (manual sync) with safety checks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deploy services to the dev EKS namespace via ArgoCD (or kubectl for bootstrap)
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-prod |
| description | Deploy services to the prod EKS namespace via ArgoCD (manual sync) with safety checks |
| disable-model-invocation | true |
| argument-hint | [service|all] |
Deploy services to the petclinic-prod namespace with extra safety checks.
service — Specific service to deploy (e.g., config-server, api-gateway) or allallPre-deployment checks:
kubectl config current-context
kubectl get namespace argocd 2>/dev/null
Explicit confirmation required: Ask the user: "You are deploying to PRODUCTION (petclinic-prod). This will affect live services. Confirm?" Do NOT proceed without explicit "yes" from the user.
If ArgoCD is installed (standard path):
argocd app diff {service}-prod || true
# Startup order: config-server first, then discovery-server, then rest
argocd app sync config-server-prod && argocd app wait config-server-prod --timeout 180
argocd app sync discovery-server-prod && argocd app wait discovery-server-prod --timeout 180
# Then remaining services one at a time
for svc in api-gateway customers-service visits-service vets-service genai-service admin-server; do
argocd app sync ${svc}-prod && argocd app wait ${svc}-prod --timeout 180
done
argocd app sync {service}-prod
argocd app wait {service}-prod --timeout 180
If ArgoCD is NOT installed (bootstrap path):
kubectl apply -f k8s/base/namespaces.yaml
helm upgrade --install {service} helm/petclinic-service/ \
-f helm-values/{service}.yaml \
-f helm-values/prod.yaml \
-n petclinic-prod --create-namespace
kubectl rollout status deployment/{service} -n petclinic-prod --timeout=180s
Startup order (when deploying all):
Post-deployment verification:
kubectl get pods -n petclinic-prod -o wide
kubectl get svc -n petclinic-prod
Show a deployment summary:
/smoke-test prod after successful deployment