Kubernetes
A society of AI agents with impeccable standards and zero tolerance for 'fix stuff' commits.
npx -y skills add fworks-tech/agenthood --skill kubernetesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Manage Kubernetes clusters via kubectl. Use when deploying, inspecting, or debugging Kubernetes resources.
SKILL.md
1.3 KB, as published. Nobody here has run it
kubectl
Use kubectl to interact with Kubernetes clusters.
Common Commands
Pods
- List pods:
kubectl get pods - Describe pod:
kubectl describe pod <name> - Logs:
kubectl logs <pod> - Exec into pod:
kubectl exec -it <pod> -- /bin/bash
Deployments
- List deployments:
kubectl get deployments - Scale:
kubectl scale deployment <name> --replicas=3 - Rollout status:
kubectl rollout status deployment/<name> - Rollback:
kubectl rollout undo deployment/<name>
Services
- List services:
kubectl get services - Expose:
kubectl expose deployment <name> --port=80 --target-port=8080
Context
- Current context:
kubectl config current-context - Switch context:
kubectl config use-context <name> - List contexts:
kubectl config get-contexts
Notes
- Requires
kubectlinstalled and~/.kube/configconfigured - Use
-n <namespace>to target a specific namespace