kubernetes-operations

kubernetes-operations is a skill for Claude Code, Codex from cass-2003/local-workflow-skill. It costs 48 tokens per session (1,856 once invoked), scanned A, original, MIT.

A guide for running applications on Kubernetes, a system that schedules and manages containers across a cluster. It covers workloads, networking, storage, permissions, Helm, GitOps, and troubleshooting.

In plain words
What is it for?
Use it to deploy and manage Kubernetes resources, write Helm charts, configure access and network rules, investigate incidents, and operate GitOps setups.
Why use it?
It provides a structured way to investigate common Kubernetes failures such as crashed, pending, or memory-limited workloads.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to deploy and manage Kubernetes resources, write Helm charts, configure access and network rules, investigate incidents, and operate GitOps setups.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cass-2003/local-workflow-skill/k8sops
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add cass-2003/local-workflow-skill --skill k8sops
Clone the repo
git clone --depth 1 https://github.com/cass-2003/local-workflow-skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kubernetes-operations

README.md
[![agentmods](https://agentmods.dev/badge/skills/cass-2003/local-workflow-skill/k8sops/github.svg)](https://agentmods.dev/skills/cass-2003/local-workflow-skill/k8sops)
Your own site
<a href="https://agentmods.dev/skills/cass-2003/local-workflow-skill/k8sops"><img src="https://agentmods.dev/badge/skills/cass-2003/local-workflow-skill/k8sops/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kubernetes-operations

Your own site · 80×15
<a href="https://agentmods.dev/skills/cass-2003/local-workflow-skill/k8sops"><img src="https://agentmods.dev/badge/skills/cass-2003/local-workflow-skill/k8sops.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,856 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.01856
Opus 5 $0.00024 $0.00928
Sonnet 5 $0.00010 $0.00371
Haiku 4.5 $0.00005 $0.00186

Measured 6d ago against content hash 3d428af08717, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

kubernetes-operations scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

kubectl exec <client-pod> -- curl <svc>:<port> # 从集群内测试
skills/cloud-infra/community/k8sops/SKILL.md · 246 lines

How it starts

The opening of the file, as written. The whole thing — 246 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kubernetes 运维

适用场景

  • K8s 集群应用部署与管理。
  • 故障排查 (CrashLoop / Pending / OOMKilled)。
  • Helm chart 编写与管理。
  • RBAC / NetworkPolicy 安全配置。
  • GitOps (ArgoCD / Flux)。

不适用

  • 容器镜像安全逆向 → containerrev
  • Docker 基础 → cld
  • 云 IaC → terraform

核心概念速查

Workloads:
  Pod           最小调度单元 (1+ 容器)
  Deployment    无状态应用 (ReplicaSet 管理)
  StatefulSet   有状态应用 (稳定网络ID + 持久卷)
  DaemonSet     每节点一个 Pod (日志/监控 agent)
  Job/CronJob   一次性/定时任务

Networking:
  Service       Pod 集合的稳定入口 (ClusterIP/NodePort/LoadBalancer)
  Ingress       L7 HTTP(S) 路由 (nginx/traefik/istio)
  Gateway API   下一代 Ingress (更灵活)
  NetworkPolicy Pod 间网络防火墙

Storage:
  PV/PVC        持久卷声明
  StorageClass  动态卷分配 (cloud provider)
  ConfigMap     配置 (明文)
  Secret        敏感配置 (base64, 非加密!)

Security:
  RBAC          Role/ClusterRole + RoleBinding
  ServiceAccount Pod 身份
  PodSecurity   Pod 安全标准 (restricted/baseline/privileged)
  NetworkPolicy 网络隔离

常用命令

# 查看
kubectl get pods -A                        # 所有 namespace
kubectl get pods -o wide                   # 显示节点/IP
kubectl describe pod <name>                # 详细状态+事件
kubectl logs <pod> [-c container] [-f]     # 日志
kubectl logs <pod> --previous              # 上次 crash 日志
kubectl top pods                           # 资源使用

# 调试
kubectl exec -it <pod> -- /bin/sh          # 进入容器
kubectl debug <pod> --image=busybox -it    # ephemeral 调试容器
kubectl port-forward svc/<name> 8080:80    # 本地端口转发
kubectl get events --sort-by=.metadata.creationTimestamp  # 事件时间线

# 操作
kubectl apply -f manifest.yaml             # 声明式部署
kubectl rollout status deploy/<name>       # 等待部署完成
kubectl rollout undo deploy/<name>         # 回滚
kubectl scale deploy/<name> --replicas=3   # 手动扩缩
kubectl delete pod <name>                  # 删除 (Deployment 会重建)

故障排查

Pod 状态:
  Pending:
    → describe: 看 Events
    → 常见: 资源不足 / nodeSelector 不匹配 / PVC pending
  CrashLoopBackOff:
    → logs --previous: 看 crash 前日志
    → 常见: 配置错误 / 启动命令错 / 依赖不可达 / OOM
  ImagePullBackOff:
    → describe: 看 image 名和 registry 认证
    → 常见: 镜像不存在 / registry 需要认证 / tag 错误
  OOMKilled:
    → describe: 看 Last State → Reason: OOMKilled
    → 增加 resources.limits.memory
  Evicted:
    → 节点磁盘/内存压力 → 被驱逐
    → 检查节点 conditions

Service 不通:
  kubectl get endpoints <svc>              # endpoint 是否有 Pod IP?
  → 没有: label selector 不匹配 / Pod 不 Ready
  kubectl exec <client-pod> -- curl <svc>:<port>  # 从集群内测试

Read the full file on GitHub · 246 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 246 lines · 48 tokens per session scan A 3d428af08717

Subscribe to this mod's changes

kubernetes-operations is a skill published in the GitHub repository cass-2003/local-workflow-skill (12 stars, last pushed 2mo ago), licensed MIT. It adds 48 tokens to every session and 1,856 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

compute-env-setup

Set up a reproducible Feynman compute environment for research jobs. Use when a task needs Python/R packages, GPU libraries, containers, Modal, SSH, caches, or managed model runtime setup.

companion-inc/feynman · 45 tokens

securing-kubernetes-on-cloud

This skill covers hardening managed Kubernetes clusters on EKS, AKS, and GKE by implementing Pod Security Standards, network policies, workload identity, RBAC scoping, image admission controls, and runtime security monitoring. It addresses cloud-specific security features including IRSA for EKS, Workload Identity for…

xalgorix/xalgorix · 80 tokens

detecting-privilege-escalation-in-kubernetes-pods

Detect and prevent privilege escalation in Kubernetes pods by monitoring security contexts, capabilities, and syscall patterns with Falco and OPA policies.

xalgorix/xalgorix · 40 tokens

implementing-rbac-hardening-for-kubernetes

Harden Kubernetes Role-Based Access Control by implementing least-privilege policies, auditing role bindings, eliminating cluster-admin sprawl, and integrating external identity providers.

xalgorix/xalgorix · 41 tokens

docker-socket-mount

Docker / containerd socket mounted into a container → host RCE. Common in CI runners, GitOps controllers (ArgoCD, Flux), and 'Docker-in-Docker' setups. Single-command escape via docker run --rm --privileged -v /:/host alpine chroot /host.

PurpleAILAB/Decepticon · 67 tokens