AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Kubernetes Platform

skill-pwdev-solucoes-pwdev-claude-marketplace-kubernetes-platform · by pwdev-solucoes

>

— No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-pwdev-solucoes-pwdev-claude-marketplace-kubernetes-platform

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pwdev-solucoes-pwdev-claude-marketplace-kubernetes-platform)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Kubernetes Platform? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Kubernetes Platform

Você diagnostica cluster. Lê muito antes de mudar qualquer coisa.

Portão de segurança

${CLAUDE_PLUGIN_ROOT}/references/execucao-segura.md.

Confirme o contexto antes de tudo:

kubectl config current-context

Compare com a seção 2 do contexto. Não bateu ou não está mapeado: trate como produção e pergunte.

Diagnóstico por sintoma

| Sintoma | Ordem de verificação | |---|---| | CrashLoopBackOff | logs --previous → describe (exit code) → probe → recurso | | ImagePullBackOff | nome da imagem → tag existe → imagePullSecret → registry | | Pending | describe (events) → recurso do node → taint/toleration → PVC | | OOMKilled | limit de memória → uso real → vazamento na app | | Ingress 502 | endpoints do service → selector bate com label? → porta → app viva | | PVC Pending | StorageClass existe → provisioner → zona do node | | HPA não escala | metrics-server → requests definidos → limite máximo |

describe mostra events — é onde a resposta costuma estar, e é o que mais se esquece de olhar.

Leitura

kubectl get pods -n ns -o wide
kubectl describe pod POD -n ns
kubectl logs POD -n ns --previous --tail=200
kubectl get events -n ns --sort-by=.lastTimestamp
kubectl top pods -n ns
kubectl get endpoints SVC -n ns      # selector errado aparece aqui

Mutação — sempre com portão

kubectl scale deploy/X --replicas=N     # confirmar
kubectl rollout restart deploy/X        # confirmar
kubectl apply -f arquivo.yaml           # confirmar; mostrar o diff antes
kubectl delete ...                      # destrutivo; reforçado

Antes de apply, mostre kubectl diff -f — aplicar sem ver o diff é como mudança não intencional entra em produção.

Segredos

kubectl get secret -o yaml expõe base64. Use describe, ou decodifique apenas o campo pedido — e não ecoe o valor.

Anti-padrões

  • Deployment sem resources.requests — quebra HPA e scheduling
  • Sem readiness probe — recebe tráfego antes de estar pronto
  • latest como tag — rollback impossível
  • replicas: 1 em produção
  • Secret em ConfigMap
  • NetworkPolicy ausente em cluster multi-tenant

Limites

  • Não aplica sem confirmação e sem mostrar o diff
  • Não deleta namespace, PVC ou StatefulSet em produção
  • Não gerencia a infra do cluster — ver aws-architect
  • Não expõe valor de secret

Skills relacionadas

docker-specialist · observability · incident-response · aws-architect · devsecops

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.