
Helm Charts
- 95 installs
- 44 repo stars
- Updated May 22, 2026
- bagelhole/devops-security-agent-skills
helm-charts is a Claude Code skill for creating, managing, and deploying Helm charts that package Kubernetes applications with reusable templates and configurable values.
About
A Claude skill for creating and managing Helm charts to package Kubernetes applications. A developer uses it to build reusable chart templates, configure values, template Deployments and Ingress, and manage releases and upgrades. It targets Helm 3.x with kubectl configured against a cluster.
- Scaffolds Helm chart structure (Chart.yaml, values.yaml, templates, helpers)
- Templates Kubernetes Deployments, Services, and conditional Ingress resources
- Covers Helm install, upgrade, release management, and chart dependencies
Helm Charts by the numbers
- 95 all-time installs (skills.sh)
- Ranked #569 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
helm-charts capabilities & compatibility
- Capabilities
- devops · orchestration
- Works with
- kubernetes
- Use cases
- devops
- Pricing
- Free
What helm-charts says it does
Create, manage, and deploy Helm charts for Kubernetes package management. Build reusable chart templates, manage releases, configure values, and use Helm repositories.
Package and deploy Kubernetes applications using Helm, the package manager for Kubernetes.
npx skills add https://github.com/bagelhole/devops-security-agent-skills --skill helm-chartsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 95 |
|---|---|
| repo stars | ★ 44 |
| Last updated | May 22, 2026 |
| Repository | bagelhole/devops-security-agent-skills ↗ |
What it does
Package and deploy Kubernetes applications as reusable, configurable Helm charts.
Who is it for?
Developers packaging Kubernetes apps as reusable, versioned Helm charts.
Skip if: Deployments that do not use Kubernetes or Helm.
When should I use this skill?
Creating a Helm chart, templating Kubernetes manifests, or managing Helm releases and upgrades.
What you get
A reusable Helm chart that installs and upgrades a Kubernetes application with configurable values.
- Helm chart with Chart.yaml and values.yaml
- Templated Deployment, Service, and Ingress manifests
- Helm release install and upgrade commands
By the numbers
- Chart structure lists 8+ template files (deployment, service, ingress, configmap, secret, helpers, notes, tests)
Files
Helm Charts
Package and deploy Kubernetes applications using Helm, the package manager for Kubernetes.
When to Use This Skill
Use this skill when:
- Creating reusable Kubernetes application packages
- Deploying applications with configurable values
- Managing Helm releases and upgrades
- Using third-party Helm charts
- Implementing chart versioning and repositories
Prerequisites
- Helm 3.x installed
- kubectl configured with cluster access
- Basic Kubernetes knowledge
Chart Structure
mychart/
├── Chart.yaml # Chart metadata
├── values.yaml # Default configuration values
├── charts/ # Chart dependencies
├── templates/ # Kubernetes manifest templates
│ ├── deployment.yaml
│ ├── service.yaml
│ ├── ingress.yaml
│ ├── configmap.yaml
│ ├── secret.yaml
│ ├── _helpers.tpl # Template helpers
│ ├── NOTES.txt # Post-install notes
│ └── tests/
│ └── test-connection.yaml
└── .helmignore # Files to ignoreChart.yaml
apiVersion: v2
name: myapp
description: A Helm chart for MyApp
type: application
version: 1.0.0
appVersion: "2.0.0"
keywords:
- myapp
- web
maintainers:
- name: DevOps Team
email: devops@example.com
dependencies:
- name: postgresql
version: "12.x.x"
repository: "https://charts.bitnami.com/bitnami"
condition: postgresql.enabledvalues.yaml
replicaCount: 2
image:
repository: myapp
tag: "" # Defaults to appVersion
pullPolicy: IfNotPresent
service:
type: ClusterIP
port: 80
ingress:
enabled: false
className: nginx
hosts:
- host: myapp.example.com
paths:
- path: /
pathType: Prefix
tls: []
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
postgresql:
enabled: true
auth:
database: myappTemplates
Deployment Template
# templates/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "myapp.fullname" . }}
labels:
{{- include "myapp.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "myapp.selectorLabels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "myapp.selectorLabels" . | nindent 8 }}
spec:
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 8080
{{- with .Values.resources }}
resources:
{{- toYaml . | nindent 12 }}
{{- end }}
env:
- name: DATABASE_URL
valueFrom:
secretKeyRef:
name: {{ include "myapp.fullname" . }}-secrets
key: database-urlHelper Functions
# templates/_helpers.tpl
{{/*
Expand the name of the chart.
*/}}
{{- define "myapp.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Create a default fully qualified app name.
*/}}
{{- define "myapp.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{/*
Common labels
*/}}
{{- define "myapp.labels" -}}
helm.sh/chart: {{ .Chart.Name }}-{{ .Chart.Version }}
{{ include "myapp.selectorLabels" . }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}
{{/*
Selector labels
*/}}
{{- define "myapp.selectorLabels" -}}
app.kubernetes.io/name: {{ include "myapp.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}Conditional Resources
# templates/ingress.yaml
{{- if .Values.ingress.enabled -}}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "myapp.fullname" . }}
labels:
{{- include "myapp.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
ingressClassName: {{ .Values.ingress.className }}
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ .path }}
pathType: {{ .pathType }}
backend:
service:
name: {{ include "myapp.fullname" $ }}
port:
number: {{ $.Values.service.port }}
{{- end }}
{{- end }}
{{- end }}Helm Commands
Installing Charts
# Install from local chart
helm install myapp ./mychart
# Install with custom values
helm install myapp ./mychart -f custom-values.yaml
# Install with value overrides
helm install myapp ./mychart \
--set replicaCount=3 \
--set image.tag=2.0.0
# Install in specific namespace
helm install myapp ./mychart -n production --create-namespace
# Dry run to preview
helm install myapp ./mychart --dry-run --debugManaging Releases
# List releases
helm list
helm list -A # All namespaces
# Upgrade release
helm upgrade myapp ./mychart
helm upgrade myapp ./mychart -f new-values.yaml
# Rollback
helm rollback myapp 1
helm history myapp
# Uninstall
helm uninstall myappChart Development
# Create new chart
helm create mychart
# Lint chart
helm lint ./mychart
# Template locally (debug)
helm template myapp ./mychart
# Package chart
helm package ./mychart
# Update dependencies
helm dependency update ./mychartRepositories
# Add repository
helm repo add bitnami https://charts.bitnami.com/bitnami
# Update repositories
helm repo update
# Search charts
helm search repo postgresql
helm search hub prometheus
# Install from repo
helm install postgres bitnami/postgresql
# Show chart info
helm show values bitnami/postgresqlAdvanced Features
Hooks
# templates/pre-install-job.yaml
apiVersion: batch/v1
kind: Job
metadata:
name: {{ include "myapp.fullname" . }}-migration
annotations:
"helm.sh/hook": pre-install,pre-upgrade
"helm.sh/hook-weight": "-5"
"helm.sh/hook-delete-policy": hook-succeeded
spec:
template:
spec:
containers:
- name: migrate
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
command: ["./migrate.sh"]
restartPolicy: NeverTests
# templates/tests/test-connection.yaml
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "myapp.fullname" . }}-test-connection"
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "myapp.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never# Run tests
helm test myappLibrary Charts
# Chart.yaml
apiVersion: v2
name: mylib
type: library
version: 1.0.0# Using library chart
dependencies:
- name: mylib
version: "1.x.x"
repository: "file://../mylib"OCI Registry Support
# Login to registry
helm registry login registry.example.com
# Push chart to OCI registry
helm push mychart-1.0.0.tgz oci://registry.example.com/charts
# Pull from OCI registry
helm pull oci://registry.example.com/charts/mychart --version 1.0.0
# Install from OCI
helm install myapp oci://registry.example.com/charts/mychartCommon Issues
Issue: YAML Indentation Errors
Problem: Template renders with wrong indentation Solution: Use nindent helper function
{{- toYaml .Values.resources | nindent 12 }}Issue: Values Not Applying
Problem: Custom values not reflected Solution: Check value paths, use --debug flag
helm template myapp ./mychart --debugIssue: Dependency Errors
Problem: Chart dependencies not found Solution: Run helm dependency update
Issue: Release Already Exists
Problem: Cannot install, release exists Solution: Use helm upgrade --install
helm upgrade --install myapp ./mychartBest Practices
- Use semantic versioning for charts
- Provide comprehensive default values
- Document all values in values.yaml with comments
- Use helper templates for repeated patterns
- Implement chart tests
- Use .helmignore to exclude unnecessary files
- Pin dependency versions
- Use
helm lintin CI pipelines
Related Skills
- kubernetes-ops - K8s fundamentals
- argocd-gitops - GitOps with Helm
- kustomize - Alternative templating
Helm Commands Reference
Chart Management
# Create new chart
helm create mychart
# Lint chart
helm lint mychart/
# Package chart
helm package mychart/
# Template (render without installing)
helm template myrelease mychart/ --values values.yamlRepository
# Add repo
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add stable https://charts.helm.sh/stable
# Update repos
helm repo update
# Search
helm search repo nginx
helm search hub nginxInstallation
# Install
helm install myrelease mychart/
helm install myrelease bitnami/nginx --namespace prod --create-namespace
# With values
helm install myrelease mychart/ -f values.yaml
helm install myrelease mychart/ --set image.tag=v1.0
# Dry run
helm install myrelease mychart/ --dry-run --debug
# Wait for completion
helm install myrelease mychart/ --wait --timeout 5mUpgrade & Rollback
# Upgrade
helm upgrade myrelease mychart/ -f values.yaml
helm upgrade --install myrelease mychart/ # Install or upgrade
# Rollback
helm rollback myrelease 1 # Rollback to revision 1
helm rollback myrelease # Previous revision
# History
helm history myreleaseManagement
# List releases
helm list
helm list -A # All namespaces
helm list --pending
# Get info
helm get values myrelease
helm get manifest myrelease
helm get all myrelease
# Status
helm status myrelease
# Uninstall
helm uninstall myrelease
helm uninstall myrelease --keep-historyChart Structure
mychart/
├── Chart.yaml # Chart metadata
├── values.yaml # Default values
├── charts/ # Dependencies
├── templates/
│ ├── NOTES.txt # Post-install notes
│ ├── _helpers.tpl # Template helpers
│ ├── deployment.yaml
│ ├── service.yaml
│ └── ingress.yaml
└── .helmignoreTemplate Functions
# Built-in functions
{{ .Values.image.tag | default "latest" }}
{{ .Release.Name | upper }}
{{ include "mychart.fullname" . }}
# Conditionals
{{- if .Values.ingress.enabled }}
# ingress config
{{- end }}
# Loops
{{- range .Values.hosts }}
- host: {{ . }}
{{- end }}Related skills
FAQ
What files make up a Helm chart?
Chart.yaml, values.yaml, a charts/ directory, and templates/ for the Kubernetes manifests.
What Helm version does this target?
Helm 3.x with kubectl configured for cluster access.