helm
Helm is a package manager for Kubernetes that allows defining, installing, and upgrading applications via charts.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o helm.zip https://jpskill.com/download/22192.zip && unzip -o helm.zip && rm helm.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22192.zip -OutFile "$d\helm.zip"; Expand-Archive "$d\helm.zip" -DestinationPath $d -Force; ri "$d\helm.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
helm.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
helmフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
helm
Purpose
Helm is a package manager for Kubernetes, enabling users to define, install, and upgrade applications using charts. It simplifies managing Kubernetes resources by packaging them into reusable templates.
When to Use
Use Helm for deploying and managing applications on Kubernetes clusters, especially when handling multiple environments, versioning dependencies, or automating deployments. Ideal for DevOps workflows involving microservices, where consistent application packaging is needed, such as in CI/CD pipelines for scalable apps.
Key Capabilities
- Package applications as charts, which are directories containing YAML manifests and templates.
- Support for chart repositories, allowing versioned storage and retrieval.
- Templating engine to customize deployments with values files (e.g., YAML format for overriding parameters).
- Rollback and upgrade features for managing release lifecycles.
- Integration with Kubernetes RBAC for secure operations.
Usage Patterns
To use Helm, first ensure Kubernetes access via kubectl or set the KUBECONFIG environment variable (e.g., export KUBECONFIG=~/.kube/config). Initialize Helm with helm init if needed, then add repositories and install charts. For custom deployments, create a chart with helm create mychart, edit values.yaml, and install. Always specify the namespace with --namespace flag for multi-tenant clusters.
Common Commands/API
Helm operates via CLI commands; no direct REST API exists, but it interacts with Kubernetes API server.
- Install a chart:
helm install myrelease stable/nginx --set service.type=LoadBalancer --namespace dev- Flags:
--setfor inline overrides,--valuesfor external YAML file (e.g.,helm install --values values.yaml).
- Flags:
- Upgrade a release:
helm upgrade myrelease stable/nginx --set replicas=3- Use
--atomicfor rollback on failure.
- Use
- List releases:
helm list --all-namespaces - Delete a release:
helm uninstall myrelease --namespace dev - Search repositories:
helm search repo nginxCode snippet for a basic values.yaml file:replicaCount: 2 image: repository: nginx tag: latestTo add a repository:
helm repo add stable https://charts.helm.sh/stable, then update withhelm repo update.
Integration Notes
Helm integrates with Kubernetes tools; ensure your cluster is accessible via the Kubernetes API. For authentication, use $KUBECONFIG for client certificates or tokens. In CI/CD (e.g., GitHub Actions), run Helm in a container with kubectl installed: set env var like export HELM_REPOSITORY_CONFIG=repo.yaml. For Terraform integration, use Helm provider: define in HCL as resource "helm_release" "nginx" { name = "myrelease" chart = "stable/nginx" set { name = "service.type" value = "LoadBalancer" } }. Avoid conflicts by using Helm's --wait flag with Kubernetes operators.
Error Handling
Common errors include "chart not found" (fix by running helm repo update), permission issues (ensure RBAC via kubectl create clusterrolebinding), or failed hooks (check with helm status). For deployment failures, use helm history release-name to review revisions, then rollback with helm rollback release-name 0. If a chart install errors due to invalid values, validate YAML first with a linter like yamllint values.yaml. Always check Kubernetes events with kubectl get events --namespace dev for root causes.
Concrete Usage Examples
- Install a WordPress chart: Add the repo with
helm repo add bitnami https://charts.bitnami.com/bitnami, then install:helm install mywordpress bitnami/wordpress --set wordpressUsername=admin --set wordpressPassword=$WP_PASSWORD --namespace web. This deploys WordPress with custom credentials; ensure$WP_PASSWORDis set as an env var for security. - Upgrade an existing MongoDB release: First, install with
helm install mymongo bitnami/mongodb --set auth.enabled=true, then upgrade:helm upgrade mymongo bitnami/mongodb --set resources.requests.memory=512Mi --namespace db. This scales resources; monitor withhelm status mymongoto verify.
Graph Relationships
- Related to: kubernetes (core dependency for deployments)
- Co-located in: devops-sre cluster (shared with tools like kubectl, terraform)
- Tagged with: helm, kubernetes, package-manager (links to similar skills in the cluster)