Install
1
Install the plugin$
npx claudepluginhub haniakrim21/everything-claude-codeWant just this command?
Then install: npx claudepluginhub u/[userId]/[slug]
Description
Generate Kubernetes manifests (Deployment, Service, ConfigMap, Secret, Ingress, HPA) for the current application with resource limits and health probes.
Command Content
Generate Kubernetes manifests for deploying the current application.
Steps
- Analyze the project to determine deployment requirements:
- Read
Dockerfilefor container configuration, exposed ports, health checks. - Read
docker-compose.ymlfor service dependencies. - Read
.env.examplefor required environment variables.
- Read
- Generate core manifests:
- Deployment: Container spec, resource limits, readiness/liveness probes, replicas.
- Service: ClusterIP, NodePort, or LoadBalancer based on access pattern.
- ConfigMap: Non-sensitive configuration values.
- Secret: Sensitive values (templated, not with real values).
- Ingress: If the service needs external access, with TLS config.
- Add operational manifests as needed:
- HorizontalPodAutoscaler: CPU/memory-based scaling rules.
- PodDisruptionBudget: Minimum availability during updates.
- NetworkPolicy: Restrict traffic to necessary paths.
- ServiceAccount: With minimal RBAC permissions.
- Set resource requests and limits based on the application type.
- Write manifests to
k8s/ordeploy/k8s/directory. - Validate with
kubectl --dry-run=client -f <file>if kubectl is available.
Format
apiVersion: apps/v1
kind: Deployment
metadata:
name: <app-name>
namespace: <namespace>
labels:
app: <app-name>
spec:
replicas: <count>
selector:
matchLabels:
app: <app-name>
template:
spec:
containers:
- name: <app-name>
image: <registry>/<image>:<tag>
ports:
- containerPort: <port>
resources:
requests:
cpu: "100m"
memory: "128Mi"
limits:
cpu: "500m"
memory: "512Mi"
Rules
- Always set resource requests and limits on every container.
- Never hardcode secrets in manifests; use Secret references or external secret managers.
- Include readiness and liveness probes for every service container.
- Use
RollingUpdatestrategy withmaxSurge: 1andmaxUnavailable: 0by default. - Add namespace to every resource manifest.
Stats
Stars1
Forks1
Last CommitFeb 26, 2026