kubernetes-helm-deployments

kubernetes-helm-deployments is a skill for Claude Code, Codex from hamzabellouch/agent-skills. It costs 50 tokens per session (1,925 once invoked), scanned A, original, MIT.

Guidance for creating and managing Kubernetes deployments with Helm, a tool that packages reusable Kubernetes configuration as charts. It covers templates, validated settings, testing, releases, and rollbacks.

In plain words
What is it for?
Use it to write Helm charts for services, define deployment settings, validate values, run dry-run checks, and manage Kubernetes releases.
Why use it?
It reduces repeated configuration and makes deployments easier to review, validate, update, and undo when a release fails.

Skill for Claude CodeCodex

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

Good fit Use it to write Helm charts for services, define deployment settings, validate values, run dry-run checks, and manage Kubernetes releases.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/hamzabellouch/agent-skills/kubernetes-helm-deployments"><img src="https://agentmods.dev/badge/skills/hamzabellouch/agent-skills/kubernetes-helm-deployments.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,925 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.00050 $0.01925
Opus 5 $0.00025 $0.00962
Sonnet 5 $0.00010 $0.00385
Haiku 4.5 $0.00005 $0.00193

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

Security

Grade A, and why

kubernetes-helm-deployments 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 8d 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.

Containerization and Orchestration/kubernetes-helm-deployments/SKILL.md · 258 lines

How it starts

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

Kubernetes Helm Deployments Skill Guide

This skill provides production standards, directory layouts, templating practices, and release management rules for building enterprise-grade Kubernetes Helm charts.


1. Helm Chart Directory Layout & Architecture

Always follow the standard Helm v3 Chart layout:

my-app/
├── Chart.yaml             # Chart metadata, versioning, and dependencies
├── values.yaml            # Default configuration values
├── values.schema.json     # JSON Schema for values validation
├── README.md              # Documentation for chart consumers
├── templates/
│   ├── _helpers.tpl       # Named templates and reusable template helpers
│   ├── deployment.yaml    # Kubernetes Deployment manifest
│   ├── service.yaml       # Kubernetes Service manifest
│   ├── ingress.yaml       # Kubernetes Ingress manifest
│   ├── hpa.yaml           # HorizontalPodAutoscaler manifest
│   ├── configmap.yaml     # ConfigMap for application configuration
│   └── NOTES.txt          # Post-installation status output
└── tests/
    └── test-connection.yaml # Helm test pod definition

2. Chart Metadata & Validation (Chart.yaml & values.schema.json)

A. Chart Metadata (Chart.yaml)

apiVersion: v2
name: my-app
description: Production microservice deployment chart for my-app
type: application
version: 1.4.0
appVersion: "2.18.1"
maintainers:
  - name: Platform Engineering
    email: [email protected]
dependencies:
  - name: postgresql
    version: 12.5.2
    repository: https://charts.bitnami.com/bitnami
    condition: postgresql.enabled

B. Values Schema Validation (values.schema.json)

Enforce strong typing on input variables to prevent invalid deployments:

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["replicaCount", "image", "service"],
  "properties": {
    "replicaCount": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "image": {
      "type": "object",
      "required": ["repository", "tag", "pullPolicy"],
      "properties": {
        "repository": { "type": "string" },
        "tag": { "type": "string" },
        "pullPolicy": {
          "type": "string",
          "enum": ["Always", "Never", "IfNotPresent"]
        }
      }
    },
    "resources": {
      "type": "object",
      "required": ["limits", "requests"]
    }
  }
}

Read the full file on GitHub · 258 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. 8d ago First seen · 258 lines · 50 tokens per session scan A d3d1df93c0a4

Subscribe to this mod's changes

kubernetes-helm-deployments is a skill published in the GitHub repository hamzabellouch/agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 50 tokens to every session and 1,925 once invoked, about $0.0003 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-09-03.