Production-grade platform engineering handbook — Kubernetes, Terraform, Flux CD, GitHub Actions, AWS, and more.
67
84%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
Status: Stable
A realistic Kubernetes Deployment that platform-skills catches before it reaches production.
| Finding | Severity | Risk |
|---|---|---|
image: latest — unpinned tag | Critical | Non-reproducible deploys; silent rollouts |
No securityContext | Critical | Container runs as root; writable filesystem |
No resources limits/requests | High | OOMKill in production; noisy neighbour |
No readinessProbe | High | Traffic hits the pod before the app is ready |
Hardcoded DATABASE_URL with credentials | High | Secret exposed in manifest and pod spec |
v1.4.2) — reproducible, auditablesecurityContext at pod and container level — non-root, read-only filesystem, all capabilities droppedresources.requests and resources.limits — predictable schedulingreadinessProbe and livenessProbe — safe traffic and self-healingsecretKeyRef — secret stays in Kubernetes SecretsserviceAccountName — least-privilege identitykubectl describe pod outputkubectl apply --dry-run=client -f fixed.yaml
kubectl auth can-i --list --as=system:serviceaccount:production:api-serverkubectl rollout undo deployment/api-server -n production
kubectl rollout status deployment/api-server -n productionUse $platform-skills to review this Kubernetes Deployment for production readiness:
securityContext, resources, probes, lifecycle, service account, and RBAC..claude-plugin
.github
commands
docs
examples
agent-self-improve
argocd
awesome-docs
aws
cloudfront
functions
lambda-edge
functions
azure
compliance
conventional-commits
datadog
llm-observability
demo
documentation
dora
dynatrace
fluxcd
github-actions
composite-actions
configure-cloud
db-migrate
docker-build-push
k8s-deploy
notify-slack
pr-comment
release-tag
security-scan
setup-env
setup-terraform
terraform-plan
helm
web-service
templates
kubernetes
kyverno
mcp
observability
openshift
pr-review
ownership
runtime-security
supply-chain
terraform
references
scripts
skills
platform-skills
tests