kubernetes

Provides comprehensive Kubernetes deployment and management capabilities for the Golden Armada AI Agent Fleet Platform.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "kubernetes" with this command: npx skills add lobbi-docs/claude/lobbi-docs-claude-kubernetes

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

apiVersion: apps/v1
kind: Deployment
metadata:
name: agent-deployment
namespace: agents
spec:
replicas: 2
selector:
matchLabels:
app: agent
template:
metadata:
labels:
app: agent
spec:
securityContext:
runAsNonRoot: true
runAsUser: 1000
containers:
- name: agent
image: golden-armada/agent:latest
ports:
- containerPort: 8080
resources:
limits:
cpu: "500m"
memory: "512Mi"
requests:
cpu: "100m"
memory: "128Mi"
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 10
periodSeconds: 30
readinessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 5
periodSeconds: 10

Service

apiVersion: v1
kind: Service
metadata:
name: agent-service
namespace: agents
spec:
selector:
app: agent
ports:
- port: 80
targetPort: 8080
type: ClusterIP

Ingress

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: agent-ingress
namespace: agents
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- host: agents.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: agent-service
port:
number: 80

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

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

workflow automation

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

pr-workflow

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

jira orchestration workflow

No summary provided by upstream source.

Repository SourceNeeds Review
General

vision-multimodal

No summary provided by upstream source.

Repository SourceNeeds Review