jeremylongshore

generating-helm-charts

@jeremylongshore/generating-helm-charts
jeremylongshore
1,004
123 forks
Updated 1/18/2026
View on GitHub

Execute use when generating Helm charts for Kubernetes applications. Trigger with phrases like "create Helm chart", "generate chart for app", "package Kubernetes deployment", or "helm template". Produces production-ready charts with Chart.yaml, values.yaml, templates, and best practices for multi-environment deployments.

Installation

$skills install @jeremylongshore/generating-helm-charts
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Pathplugins/devops/helm-chart-generator/skills/generating-helm-charts/SKILL.md
Branchmain
Scoped Name@jeremylongshore/generating-helm-charts

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: generating-helm-charts description: | Execute use when generating Helm charts for Kubernetes applications. Trigger with phrases like "create Helm chart", "generate chart for app", "package Kubernetes deployment", or "helm template". Produces production-ready charts with Chart.yaml, values.yaml, templates, and best practices for multi-environment deployments. allowed-tools: Read, Write, Edit, Grep, Glob, Bash(helm:), Bash(kubectl:) version: 1.0.0 author: Jeremy Longshore jeremy@intentsolutions.io license: MIT

Helm Chart Generator

This skill provides automated assistance for helm chart generator tasks.

Prerequisites

Before using this skill, ensure:

  • Helm 3+ is installed on the system
  • Kubernetes cluster access is configured
  • Application container images are available
  • Understanding of application resource requirements
  • Chart repository access (if publishing)

Instructions

  1. Gather Requirements: Identify application type, dependencies, configuration needs
  2. Create Chart Structure: Generate Chart.yaml with metadata and version info
  3. Define Values: Create values.yaml with configurable parameters and defaults
  4. Build Templates: Generate deployment, service, ingress, and configmap templates
  5. Add Helpers: Create _helpers.tpl for reusable template functions
  6. Configure Resources: Set resource limits, security contexts, and health checks
  7. Test Chart: Validate with helm lint and helm template commands
  8. Document Usage: Add README with installation instructions and configuration options

Output

Generates complete Helm chart structure:

{baseDir}/helm-charts/app-name/
├── Chart.yaml          # Chart metadata
├── values.yaml         # Default configuration
├── templates/
│   ├── deployment.yaml
│   ├── service.yaml
│   ├── ingress.yaml
│   ├── configmap.yaml
│   ├── _helpers.tpl    # Template helpers
│   └── NOTES.txt       # Post-install notes
├── charts/             # Dependencies
└── README.md

Example Chart.yaml:

apiVersion: v2
name: my-app
description: Production-ready application chart
type: application
version: 1.0.0
appVersion: "1.0.0"

Example values.yaml:

replicaCount: 3
image:
  repository: registry/app
  tag: "1.0.0"
  pullPolicy: IfNotPresent
resources:
  limits:
    cpu: 500m
    memory: 512Mi
  requests:
    cpu: 250m
    memory: 256Mi

Error Handling

Common issues and solutions:

Chart Validation Errors

  • Error: "Chart.yaml: version is required"
  • Solution: Ensure Chart.yaml contains valid apiVersion, name, and version fields

Template Rendering Failures

  • Error: "parse error in deployment.yaml"
  • Solution: Validate template syntax with helm template and check Go template formatting

Missing Dependencies

  • Error: "dependency not found"
  • Solution: Run helm dependency update in chart directory

Values Override Issues

  • Error: "failed to render values"
  • Solution: Check values.yaml syntax and ensure proper YAML indentation

Installation Failures

  • Error: "release failed: timed out waiting for condition"
  • Solution: Increase timeout or check pod logs for application startup issues

Resources

Overview

This skill provides automated assistance for the described functionality.

Examples

Example usage patterns will be demonstrated in context.

More by jeremylongshore

View all
rabbitmq-queue-setup
1,004

Rabbitmq Queue Setup - Auto-activating skill for Backend Development. Triggers on: rabbitmq queue setup, rabbitmq queue setup Part of the Backend Development skill category.

model-evaluation-suite
1,004

evaluating-machine-learning-models: This skill allows Claude to evaluate machine learning models using a comprehensive suite of metrics. It should be used when the user requests model performance analysis, validation, or testing. Claude can use this skill to assess model accuracy, precision, recall, F1-score, and other relevant metrics. Trigger this skill when the user mentions "evaluate model", "model performance", "testing metrics", "validation results", or requests a comprehensive "model evaluation".

neural-network-builder
1,004

building-neural-networks: This skill allows Claude to construct and configure neural network architectures using the neural-network-builder plugin. It should be used when the user requests the creation of a new neural network, modification of an existing one, or assistance with defining the layers, parameters, and training process. The skill is triggered by requests involving terms like "build a neural network," "define network architecture," "configure layers," or specific mentions of neural network types (e.g., "CNN," "RNN," "transformer").

oauth-callback-handler
1,004

Oauth Callback Handler - Auto-activating skill for API Integration. Triggers on: oauth callback handler, oauth callback handler Part of the API Integration skill category.