agentsclimarketplace

Helm

Skill G1Joshi/Agent-Skills/skills/devops/helm

A comprehensive skill catalog for AI agents

Install
npx -y skills add G1Joshi/Agent-Skills --skill helm

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Helm Kubernetes package manager with charts. Use for K8s deployments.

SKILL.md

1.6 KB, 380 tokens by cl100k_base, as published. Nobody here has run it

Helm

Helm helps you manage Kubernetes applications via Charts (packages of pre-configured K8s resources). Helm v4 (2025) improves OCI integration and enables server-side apply.

When to Use

  • Packaging: Distribute your K8s app to others.
  • Templating: Manage complexity. One deployment.yaml template for Dev, Staging, and Prod.
  • Management: Easy upgrades/rollbacks (helm rollback).

Quick Start

# Install a chart
helm install my-release oci://registry-1.docker.io/bitnamicharts/nginx

# Create a chart
helm create my-chart
# values.yaml
replicaCount: 2
image:
  repository: nginx
  tag: "1.25"

Core Concepts

Charts

A collection of files that describe a related set of Kubernetes resources. Chart.yaml, values.yaml, templates/.

OCI Registries

Helm v4 treats OCI (Docker) registries as first-class citizens. You push Charts to Docker Hub/ECR/GHCR just like container images.

Release

An instance of a chart running in a cluster.

Best Practices (2025)

Do:

  • Store Charts in OCI: Push charts to your container registry (helm push). Deprecate HTTP chart repositories.
  • Use helm upgrade --install: Idempotent command for CI/CD pipelines.
  • Use helm lint & kubeval: Validate templates before deploying.

Don't:

  • Don't overuse logic in templates: If your Go templates look like spaghetti code, consider using a simpler tool (Kustomize) or an Operator.

References

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,984. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.