{"id":13425068,"url":"https://github.com/helm/helm","last_synced_at":"2026-04-09T08:01:45.358Z","repository":{"id":37405484,"uuid":"43723161","full_name":"helm/helm","owner":"helm","description":"The Kubernetes Package Manager","archived":false,"fork":false,"pushed_at":"2025-04-29T21:45:46.000Z","size":23725,"stargazers_count":27827,"open_issues_count":808,"forks_count":7223,"subscribers_count":510,"default_branch":"main","last_synced_at":"2025-05-05T15:08:33.601Z","etag":null,"topics":["chart","charts","cncf","helm","kubernetes"],"latest_commit_sha":null,"homepage":"https://helm.sh","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/helm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"code-of-conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-10-06T01:07:32.000Z","updated_at":"2025-05-05T14:36:10.000Z","dependencies_parsed_at":"2024-01-12T22:04:32.939Z","dependency_job_id":"2322fe6d-58ca-40d8-9202-51ecbd678385","html_url":"https://github.com/helm/helm","commit_stats":{"total_commits":4174,"total_committers":725,"mean_commits":"5.7572413793103445","dds":0.8780546238620028,"last_synced_commit":"e63083492b1917b361321ef6951fad08db81d11f"},"previous_names":["kubernetes/deployment-manager","kubernetes/helm"],"tags_count":213,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helm%2Fhelm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helm%2Fhelm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helm%2Fhelm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helm%2Fhelm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helm","download_url":"https://codeload.github.com/helm/helm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253356256,"owners_count":21895670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chart","charts","cncf","helm","kubernetes"],"created_at":"2024-07-31T00:01:03.821Z","updated_at":"2026-01-17T07:59:33.875Z","avatar_url":"https://github.com/helm.png","language":"Go","readme":"# Helm\n\n[![Build Status](https://github.com/helm/helm/workflows/release/badge.svg)](https://github.com/helm/helm/actions?workflow=release)\n[![Go Report Card](https://goreportcard.com/badge/helm.sh/helm/v4)](https://goreportcard.com/report/helm.sh/helm/v4)\n[![GoDoc](https://img.shields.io/static/v1?label=godoc\u0026message=reference\u0026color=blue)](https://pkg.go.dev/helm.sh/helm/v4)\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3131/badge)](https://bestpractices.coreinfrastructure.org/projects/3131)\n[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/helm/helm/badge)](https://scorecard.dev/viewer/?uri=github.com/helm/helm)\n[![LFX Health Score](https://insights.linuxfoundation.org/api/badge/health-score?project=helm)](https://insights.linuxfoundation.org/project/helm)\n\nHelm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources.\n\nUse Helm to:\n\n- Find and use [popular software packaged as Helm Charts](https://artifacthub.io/packages/search?kind=0) to run in Kubernetes\n- Share your own applications as Helm Charts\n- Create reproducible builds of your Kubernetes applications\n- Intelligently manage your Kubernetes manifest files\n- Manage releases of Helm packages\n\n## Helm in a Handbasket\n\nHelm is a tool that streamlines installing and managing Kubernetes applications.\nThink of it like apt/yum/homebrew for Kubernetes.\n\n- Helm renders your templates and communicates with the Kubernetes API\n- Helm runs on your laptop, CI/CD, or wherever you want it to run.\n- Charts are Helm packages that contain at least two things:\n  - A description of the package (`Chart.yaml`)\n  - One or more templates, which contain Kubernetes manifest files\n- Charts can be stored on disk, or fetched from remote chart repositories\n  (like Debian or RedHat packages)\n\n## Helm Development and Stable Versions\n\nHelm v4 is currently under development on the `main` branch. This is unstable and the APIs within the Go SDK and at the command line are changing.\nHelm v3 (current stable) is maintained on the `dev-v3` branch. APIs there follow semantic versioning.\n\n## Install\n\nBinary downloads of the Helm client can be found on [the Releases page](https://github.com/helm/helm/releases/latest).\n\nUnpack the `helm` binary and add it to your PATH and you are good to go!\n\nIf you want to use a package manager:\n\n- [Homebrew](https://brew.sh/) users can use `brew install helm`.\n- [Chocolatey](https://chocolatey.org/) users can use `choco install kubernetes-helm`.\n- [Winget](https://learn.microsoft.com/en-us/windows/package-manager/) users can use `winget install Helm.Helm`.\n- [Scoop](https://scoop.sh/) users can use `scoop install helm`.\n- [Snapcraft](https://snapcraft.io/) users can use `snap install helm --classic`.\n- [Flox](https://flox.dev) users can use `flox install kubernetes-helm`.\n- [Mise-en-place](https://mise.jdx.dev/) users can use `mise use -g helm@latest`\n\nTo rapidly get Helm up and running, start with the [Quick Start Guide](https://helm.sh/docs/intro/quickstart/).\n\nSee the [installation guide](https://helm.sh/docs/intro/install/) for more options,\nincluding installing pre-releases.\n\n## Docs\n\nGet started with the [Quick Start guide](https://helm.sh/docs/intro/quickstart/) or plunge into the [complete documentation](https://helm.sh/docs).\n\n## Roadmap\n\nThe [Helm roadmap uses GitHub milestones](https://github.com/helm/helm/milestones) to track the progress of the project.\n\nThe development of Helm v4 is currently happening on the `main` branch while the development of Helm v3, the stable branch, is happening on the `dev-v3` branch. Changes should be made to the `main` branch prior to being added to the `dev-v3` branch so that all changes are carried along to Helm v4.\n\n## Community, discussion, contribution, and support\n\nYou can reach the Helm community and developers via the following channels:\n\n- [Kubernetes Slack](https://kubernetes.slack.com):\n  - [#helm-users](https://kubernetes.slack.com/messages/helm-users)\n  - [#helm-dev](https://kubernetes.slack.com/messages/helm-dev)\n  - [#charts](https://kubernetes.slack.com/messages/charts)\n- Mailing List:\n  - [Helm Mailing List](https://lists.cncf.io/g/cncf-helm)\n- Developer Call: Thursdays at 9:30-10:00 Pacific ([meeting details](https://github.com/helm/community/blob/master/communication.md#meetings))\n\n### Contribution\n\nIf you're interested in contributing, please refer to the [Contributing Guide](CONTRIBUTING.md) **before submitting a pull request**.\n\n### Code of conduct\n\nParticipation in the Helm community is governed by the [Code of Conduct](code-of-conduct.md).\n","funding_links":[],"categories":["Go","kubernetes","Kubernetes","Go (134)","Tools and Libraries","Uncategorized","☁️ Cloud Platforms \u0026 Infrastructure","HarmonyOS","其他__大数据","Back-End Development","一、核心工具集（按场景分类）","Configuration Management","DevOps","Continuous Delivery \u0026 GitOps"],"sub_categories":["Configuration","Kubernetes templating","Command Line Tools","Uncategorized","Tools","Windows Manager","网络服务_其他","1. 命令行效率工具（日常操作必备）"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelm%2Fhelm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelm%2Fhelm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelm%2Fhelm/lists"}