kubernetes-docs

kubernetes-docs is a skill for Claude Code, Codex from pledgeandgrow/pledge-skills. It costs 40 tokens per session (2,705 once invoked), scanned A, original, MIT.

A reference guide to Kubernetes, a system for deploying, scaling, connecting, and managing containerized applications across computers.

In plain words
What is it for?
It covers Pods, Deployments, Services, Ingress, storage, configuration, Secrets, access control, custom resources, Operators, kubectl, Helm, rollouts, and debugging.
Why use it?
It helps developers understand Kubernetes concepts and commands when running applications across a cluster instead of managing each machine by hand.

Skill for Claude CodeCodex

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

Good fit It covers Pods, Deployments, Services, Ingress, storage, configuration, Secrets, access control, custom resources, Operators, kubectl, Helm, rollouts, and debugging.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pledgeandgrow/pledge-skills/kubernetes
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 pledgeandgrow/pledge-skills --skill kubernetes
Clone the repo
git clone --depth 1 https://github.com/pledgeandgrow/pledge-skills

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-docs

README.md
[![agentmods](https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/kubernetes/github.svg)](https://agentmods.dev/skills/pledgeandgrow/pledge-skills/kubernetes)
Your own site
<a href="https://agentmods.dev/skills/pledgeandgrow/pledge-skills/kubernetes"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/kubernetes/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-docs

Your own site · 80×15
<a href="https://agentmods.dev/skills/pledgeandgrow/pledge-skills/kubernetes"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/kubernetes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,705 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00040 $0.02705
Opus 5 $0.00020 $0.01352
Sonnet 5 $0.00008 $0.00541
Haiku 4.5 $0.00004 $0.00270

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

Security

Grade A, and why

kubernetes-docs scanned grade A with 0 findings 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 10d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/kubernetes/SKILL.md · 236 lines

How it starts

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

Kubernetes Skill

Kubernetes is an open-source container orchestration engine for automating deployment, scaling, and management of containerized applications. It provides service discovery, load balancing, storage orchestration, automated rollouts/rollbacks, self-healing, secret management, batch execution, and horizontal scaling. This skill covers the official Kubernetes documentation.

When to Use

  • Orchestrating containerized applications across clusters of machines
  • Managing stateless and stateful workloads (Deployments, StatefulSets, DaemonSets, Jobs)
  • Configuring networking (Services, Ingress, Network Policies, DNS)
  • Managing persistent storage (PersistentVolumes, StorageClasses, CSI)
  • Configuring applications (ConfigMaps, Secrets, Resource Management)
  • Securing clusters (Pod Security Standards, RBAC, Service Accounts)
  • Setting up clusters (kubeadm, production environments, high availability)
  • Using kubectl for cluster operations and debugging

Skill Files

  • concepts.md — Overview (what is Kubernetes, features, extensibility), components (control plane: kube-apiserver, etcd, kube-scheduler, kube-controller-manager, cloud-controller-manager; node: kubelet, kube-proxy, container runtime; addons), objects (spec, status, manifests, labels, annotations, namespaces, selectors), Kubernetes API (API groups, versioning, etcd persistence), containers (images, runtimes, CRI, lifecycle hooks, environment)
  • workloads.md — Pods (single/multi-container, shared namespaces, resource sharing, security settings, resource requests/limits, static pods, probes), Deployments (rollouts, rolling updates, rollbacks, scaling, pausing/resuming, canary, spec fields), StatefulSets (stable identity, ordered deployment, pod management policies, update strategies, PVC retention), DaemonSets (node-local pods, scheduling, taints/tolerations, updates), Jobs (parallel execution, completion modes, failure handling, patterns, cleanup, CronJobs)
  • networking.md — Services (ClusterIP, NodePort, LoadBalancer, ExternalName, headless services, service discovery, virtual IP, traffic policies, session stickiness), Ingress (Ingress resource, rules, path types, hostname wildcards, IngressClass, TLS, load balancing, types: single Service, fanout, name-based virtual hosting), Network Policies (pod isolation, ingress/egress, default policies, selectors, namespace targeting), DNS for Services and Pods (A/AAAA records, SRV records, namespace scoping, Pod hostname/subdomain, DNS policies, DNS config, search domain limits, Windows DNS), Gateway API (design principles, resource model: GatewayClass/Gateway/HTTPRoute/GRPCRoute, relationships, example YAML, migrating from Ingress, conformance)
  • storage.md — PersistentVolumes (lifecycle: provisioning, binding, using, reclaiming; capacity, access modes, volume modes, phases; PVCs: requests, selectors, class), StorageClasses (provisioner, parameters, reclaim policy, volume expansion, mount options, volume binding mode, allowed topologies, default StorageClass)
  • configuration.md — ConfigMaps (motivation, data/binaryData fields, immutable ConfigMaps, using as files and environment variables), Secrets (types: Opaque, ServiceAccount token, Docker config, basic auth, SSH, TLS, bootstrap token; usage as files/env vars, image pull secrets, immutable secrets, security), Resource Management (requests, limits, CPU/memory units, enforcement), kubeconfig (clusters, users, contexts)
  • security.md — Pod Security Standards (Privileged, Baseline, Restricted profiles; policy instantiation; Pod OS field; user namespaces), Pod Security Admission (admission controller, enforcement modes: enforce, audit, warn; namespace labels; workload resources and Pod templates; exemptions), security context (runAsUser, runAsGroup, fsGroup, capabilities, seccomp), TLS (CertificateSigningRequest, kubelet cert rotation, managing TLS certs, CA rotation)
  • setup.md — Learning environment (local tools: minikube, kind, etc.), Production environment (kubeadm, container runtimes, best practices, high availability), Windows nodes (container runtime, networking, pod limitations, workload considerations), Install Tools (kubectl, kind, minikube, kubeadm), cloud provider setup
  • tutorials.md — Hello Minikube (objectives, creating cluster, checking status, dashboard, creating Deployment, creating Service, enabling addons, cleanup)
  • scheduling-eviction.md — kube-scheduler (scheduling overview, feasible nodes, scoring, binding, custom schedulers), Pod Priority and Preemption (PriorityClass, globalDefault, non-preempting, scheduling order, preemption, limitations, QoS interaction), API-initiated Eviction (Eviction API, responses, graceful termination, troubleshooting), Node-pressure Eviction (eviction signals, thresholds, node conditions, pod selection, self-healing, known issues)
  • extending.md — Extension points (kubectl plugins, API access, API extensions, scheduler, controllers, network/storage/device plugins), Custom Resources (CRDs, API aggregation, CRDs vs aggregation, custom controllers, Operator pattern, deploying operators), API Access Extensions (authentication, authorization, admission control), Infrastructure Extensions (device plugins, CNI, CSI, image credential providers)
  • policy.md — Resource Quotas (how they work, types: infrastructure/extended/storage/object count, scopes, cluster capacity), LimitRange (constraints, default values, min/max, types, admission checks), PodDisruptionBudgets (purpose, spec fields, eviction interaction, controller integration)
  • tasks.md — Accessing clusters (kubectl, API access, in-cluster access), Managing objects (imperative, declarative, labeling, editing), Configuring Pods (node assignment, QoS, extended resources, probes, ConfigMaps/Secrets, storage), Managing cluster (taints, cordon/drain, debugging, ephemeral containers), Installing addons, Administering stateful applications, Cluster Administration (planning, managing, securing, certificates, observability: metrics/logs/traces, node autoscaling, HugePages scheduling, GPU scheduling with device plugins)
  • reference.md — kubectl (syntax, operations, resource types, output options, common operations, plugins, version compatibility, declarative vs imperative), glossary (key terms), well-known labels, annotations and taints (common labels, app labels, node taints, pod annotations, security labels, storage annotations, service annotations, kubeadm labels), API versioning (alpha/beta/GA levels, API groups, deprecation policy), Feature Gates (usage, feature stages, lifecycle), Client Libraries (Go, Python, Java, JS, C#, Haskell), Component Reference (CLI flags, ports and protocols, JSONPath)

Read the full file on GitHub · 236 lines

Files

What ships with it

13 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 236 lines · 40 tokens per session scan A 4249c1deee86

Subscribe to this mod's changes

kubernetes-docs is a skill published in the GitHub repository pledgeandgrow/pledge-skills (10 stars, last pushed 1mo ago), licensed MIT. It adds 40 tokens to every session and 2,705 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.