kubernetes-deployment
Deep knowledge about deploying applications to Kubernetes clusters using kubectl, helm, and manifests.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Deep knowledge about deploying applications to Kubernetes clusters using kubectl, helm, and manifests.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Deterministic AI development workflow orchestrator. Manages task boards (.jonggrang/jonggrang-tasks.json), runs 16-phase pipelines (BUGFIX/SMALL/MEDIUM/LARGE), installs lifecycle hooks for Claude Code and OpenCode, and coordinates five specialist roles (Lead/Developer/Reviewer/TestLead/Tester). Use when planning features, executing multi-step development workflows, or orchestrating AI coding agents. Run via npx jonggrang.
16-phase feature orchestration workflow. Runs in the main thread as Kernel Mode. Coordinates the Lead→Developer→Reviewer→TestLead→Tester assembly line.
Protocol for agents to write structured outputs that survive session resets and are findable by the orchestrator.
GitHub workflow automation with the gh CLI — pull requests, issues, releases, the REST/GraphQL API, and safe message escaping. Auth via GH_TOKEN (set in global settings, attached to the sandbox env).
GitLab workflow automation with the glab CLI — merge requests, issues, CI, releases, and safe message escaping. Auth via GITLAB_TOKEN (set in global settings, attached to the sandbox env).
Prevents premature exit and infinite loops. Three mechanisms: Completion Promises, Scratchpads, Loop Detection.
| name | kubernetes-deployment |
| description | Deep knowledge about deploying applications to Kubernetes clusters using kubectl, helm, and manifests. |
| type | transform |
| tier | library |
| domain | deploy |
| trigger | when deploying to Kubernetes |
Deploying {{project_name}} ({{project_type}}) to Kubernetes. You will follow a strict 6-phase Deployment Lifecycle Contract.
Execute the following phases in order:
KUBECONFIG environment variable is set to a valid configuration file, or the configuration is located in ~/.kube/config.aws eks update-kubeconfig or gcloud container clusters get-credentials).kubectl cluster-info and kubectl get nodes.docker build -t <registry>/<image-name>:<tag> .docker push <registry>/<image-name>:<tag>kubectl create namespace <namespace> (if it doesn't exist).kubectl apply -f k8s/configmap.yaml or use kubectl create secret generic.helm dependency update <chart-dir>.kubectl apply -f k8s/.kustomize build k8s/ | kubectl apply -f -.helm upgrade --install <release-name> <chart-dir> --namespace <namespace> --set image.tag=<tag>.kubectl rollout status deployment/<deployment-name> -n <namespace>. This command will block until the deployment is successful or fails.kubectl get pods -n <namespace>.kubectl logs -l app=<app-label> -n <namespace>.kubectl rollout undo deployment/<deployment-name> -n <namespace>.helm rollback <release-name> -n <namespace>.kubectl cluster-info) succeeds.