kubernetes-patterns
Pod design patterns, sidecar containers, init containers, config management, rolling updates, and resource limits.
npx skills add vibeeval/vibecosystem --skill kubernetes-patterns --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Kubernetes Patterns Production-grade Kubernetes deployment and pod design patterns. ## Pod Design Patterns ```yaml # Sidecar Pattern: log collector alongside main app apiVersion: v1 kind: Pod metadata: name: app-with-sidecar spec: containers: - name: app image: myapp:v1.2.0 ports: - containerPort: 8080 volumeMounts: - name: logs mountPath: /var/log/app - name: log-collector image: fluentd:v1.16 volumeMounts: - name: logs mountPath: /var/log/app readOnly: true volumes: - name: logs emptyDir: {} ``` ## Init Containers ```yaml # Run setup tasks before main container starts apiVersion: apps/v1 kind: Deployment metadata: name: api-server spec: replicas: 3 template: spec: initContainers: # Wait for database to be ready - name: wait-for-db image: busybox:1.36 command: ['sh', '-c', 'until nc -z postgres-svc 5432; do sleep 2; done'] # Run database migrations - name: run-migrations image: myapp:v1.2.0 command: ['npx', 'prisma', 'migrate', 'deploy'] envFrom: - secretRef: name: db-credentials containers: - name: api image: myapp:v1.2.0 ports: - containerPort: 3000 ``` ## Resource Limits and Requests ```yaml containers: - name: api image: myapp:v1.2.0 resources: requests: # Scheduler uses thi
- Pod Design Patterns
- Init Containers
- Resource Limits and Requests
- ConfigMap and Secrets
- Rolling Update Strategy
- Horizontal Pod Autoscaler
- Network Policy
- Checklist
- Anti-Patterns
What does the kubernetes-patterns skill do?
Pod design patterns, sidecar containers, init containers, config management, rolling updates, and resource limits.
How do I install it?
Run `npx skills add vibeeval/vibecosystem --skill kubernetes-patterns --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
