Back to Skills

generating-helm-charts

jeremylongshore
Updated Today
19 views
712
74
712
View on GitHub
Metadata

About

This skill generates production-ready Helm charts for Kubernetes applications when prompted with phrases like "create Helm chart" or "generate chart for app". It creates the full chart structure including Chart.yaml, values.yaml, and template files while following best practices for multi-environment deployments. The skill utilizes Helm and kubectl commands to build and validate charts.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/jeremylongshore/claude-code-plugins-plus
Git CloneAlternative
git clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/generating-helm-charts

Copy and paste this command in Claude Code to install this skill

Documentation

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

GitHub Repository

jeremylongshore/claude-code-plugins-plus
Path: plugins/devops/helm-chart-generator/skills/helm-chart-generator
aiautomationclaude-codedevopsmarketplacemcp

Related Skills

csv-data-summarizer

Meta

This skill automatically analyzes CSV files to generate comprehensive statistical summaries and visualizations using Python's pandas and matplotlib/seaborn. It should be triggered whenever a user uploads or references CSV data without prompting for analysis preferences. The tool provides immediate insights into data structure, quality, and patterns through automated analysis and visualization.

View skill

llamaindex

Meta

LlamaIndex is a data framework for building RAG-powered LLM applications, specializing in document ingestion, indexing, and querying. It provides key features like vector indices, query engines, and agents, and supports over 300 data connectors. Use it for document Q&A, chatbots, and knowledge retrieval when building data-centric applications.

View skill

hybrid-cloud-networking

Meta

This skill configures secure hybrid cloud networking between on-premises infrastructure and cloud platforms like AWS, Azure, and GCP. Use it when connecting data centers to the cloud, building hybrid architectures, or implementing secure cross-premises connectivity. It supports key capabilities such as VPNs and dedicated connections like AWS Direct Connect for high-performance, reliable setups.

View skill

Excel Analysis

Meta

This skill enables developers to analyze Excel files and perform data operations using pandas. It can read spreadsheets, create pivot tables, generate charts, and conduct data analysis on .xlsx files and tabular data. Use it when working with Excel files, spreadsheets, or any structured tabular data within Claude Code.

View skill