kubernetes-operations
Kubernetes operations including manifests, Helm charts, operators, troubleshooting, and resource management
Content Preview
---
name: kubernetes-operations
description: Kubernetes operations including manifests, Helm charts, operators, troubleshooting, and resource management
---
# Kubernetes Operations
## Deployment Manifest
```yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: api-server
labels:
app: api-server
version: v1
spec:
replicas: 3
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
selector:
matchLabels:
app: api-server
temHow to Use
Recommended: Install to project (local)
mkdir -p .claude/skills
curl -o .claude/skills/kubernetes-operations.md \
https://raw.githubusercontent.com/rohitg00/awesome-claude-code-toolkit/main/skills/kubernetes-operations/SKILL.mdSkill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.
Alternative: Clone full repo
git clone https://github.com/rohitg00/awesome-claude-code-toolkitThen reference at skills/kubernetes-operations/SKILL.md
Related Skills
Creating Kubernetes Deployments
This skill enables Claude to generate Kubernetes deployment manifests, services, and related configurations following best practices. It should be used when the user asks to create a new Kubernetes deployment, service, ingress, or other related resources. Claude will generate YAML files for Deployme
skill-adaptercreating kubernetes deployments
by jeremylongshore · plugins-plus-skills
kubernetes-architect
Expert Kubernetes architect specializing in cloud-native infrastructure, advanced GitOps workflows (ArgoCD/Flux), and enterprise container orchestration.
infrastructurekubernetes
by sickn33 (Antigravity) · antigravity-awesome-skills
kubernetes-deployment
Kubernetes deployment workflow for container orchestration, Helm charts, service mesh, and production-ready K8s configurations.
infrastructurekubernetesdeployment
by sickn33 (Antigravity) · antigravity-awesome-skills
devops-automation
CI/CD pipeline design with GitHub Actions, Docker, Kubernetes, Helm, and GitOps patterns
devops-automationdevopsautomationci/cd
by rohitg00 · awesome-claude-toolkit