generating-helm-charts
について
このスキルは、「Helmチャートを作成して」や「アプリのチャートを生成して」などの指示を受けると、Kubernetesアプリケーション向けの本番環境対応のHelmチャートを生成します。Chart.yaml、values.yaml、テンプレートファイルを含む完全なチャート構造を作成し、マルチ環境デプロイメントのベストプラクティスに従います。このスキルはHelmおよびkubectlコマンドを活用してチャートを構築・検証します。
クイックインストール
Claude Code
推奨/plugin add https://github.com/jeremylongshore/claude-code-plugins-plusgit clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/generating-helm-chartsこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
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
- Gather Requirements: Identify application type, dependencies, configuration needs
- Create Chart Structure: Generate Chart.yaml with metadata and version info
- Define Values: Create values.yaml with configurable parameters and defaults
- Build Templates: Generate deployment, service, ingress, and configmap templates
- Add Helpers: Create _helpers.tpl for reusable template functions
- Configure Resources: Set resource limits, security contexts, and health checks
- Test Chart: Validate with
helm lintandhelm templatecommands - 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 templateand check Go template formatting
Missing Dependencies
- Error: "dependency not found"
- Solution: Run
helm dependency updatein 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
- Helm documentation: https://helm.sh/docs/
- Chart best practices guide: https://helm.sh/docs/chart_best_practices/
- Template function reference: https://helm.sh/docs/chart_template_guide/
- Example charts repository: https://github.com/helm/charts
- Chart testing guide in {baseDir}/docs/helm-testing.md
GitHub リポジトリ
関連スキル
content-collections
メタThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
polymarket
メタThis skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.
hybrid-cloud-networking
メタ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.
llamaindex
メタ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.
