Kubernetes Skill
Provides comprehensive Kubernetes deployment and management capabilities for the Golden Armada AI Agent Fleet Platform.
When to Use This Skill
Activate this skill when working with:
- Pod management and debugging
- Deployment configurations and rollouts
- Service and ingress setup
- Kubernetes resource templates
- Cluster troubleshooting
- Namespace management
Quick Reference
Common Commands
# Pods
kubectl get pods -n agents kubectl describe pod -n agents kubectl logs -n agents --tail=100 -f kubectl exec -it -n agents -- /bin/sh
# Deployments
kubectl get deployments -n agents kubectl rollout status deployment/ -n agents kubectl rollout restart deployment/ -n agents kubectl scale deployment/ -n agents --replicas=3
# Services
kubectl get svc -n agents kubectl port-forward svc/ 8080:8080 -n agents
# Debugging
kubectl get events -n agents --sort-by='.lastTimestamp' kubectl top pods -n agents kubectl describe pod -n agents | grep -A10 "Events:" ```
## Resource Templates
### Deployment
Service
### Ingress
Troubleshooting Flow
- Check pod status:
kubectl get pods - Check events:
kubectl get events - Check logs:
kubectl logs <pod> - Check describe:
kubectl describe pod <pod> - Check resources:
kubectl top pods
Golden Armada Specific
Default namespace: agents Helm chart location: deployment/helm/golden-armada