{"id":37105610,"url":"https://github.com/cafebazaar/helm","last_synced_at":"2026-01-14T12:44:20.609Z","repository":{"id":57610798,"uuid":"47692253","full_name":"cafebazaar/helm","owner":"cafebazaar","description":"Helm - The Kubernetes Package Manager","archived":false,"fork":true,"pushed_at":"2015-12-09T15:28:29.000Z","size":1636,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-06-20T15:43:22.566Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"helm/helm-classic","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cafebazaar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-12-09T13:13:26.000Z","updated_at":"2015-12-09T13:13:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cafebazaar/helm","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/cafebazaar/helm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cafebazaar%2Fhelm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cafebazaar%2Fhelm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cafebazaar%2Fhelm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cafebazaar%2Fhelm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cafebazaar","download_url":"https://codeload.github.com/cafebazaar/helm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cafebazaar%2Fhelm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28420814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-01-14T12:44:19.853Z","updated_at":"2026-01-14T12:44:20.600Z","avatar_url":"https://github.com/cafebazaar.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Helm - The Kubernetes Package Manager\n\n[![Build Status](https://travis-ci.org/helm/helm.svg?branch=master)](https://travis-ci.org/helm/helm) [![Go Report Card](http://goreportcard.com/badge/helm/helm)](http://goreportcard.com/report/helm/helm)\n\n[Helm](https://helm.sh) bootstraps your Kubernetes cluster with **Charts** that provide ready-to-use workloads like:\n\n- A Redis cluster\n- A Postgres database\n- An HAProxy edge load balancer\n\nA Chart is a unit of Kubernetes manifests that reflect best practices as determined by the Helm community.  Helm's [architecture](docs/architecture.md) is heavily influenced by [Homebrew](https://github.com/Homebrew/homebrew).\n\nTo view or contribute Charts, head over to the [charts repo](https://github.com/helm/charts).\n\n## Work in Progress\n\n![Deis Graphic](https://s3-us-west-2.amazonaws.com/get-deis/deis-graphic-small.png)\n\nHelm is changing quickly. Your feedback and participation are more than welcome, but be aware that this project is considered a work in progress.\n\nPlease note that Helm is not a general-purpose tool for managing a Kubernetes cluster.  For that, we recommend using [kubectl](http://kubernetes.io/v1.0/docs/user-guide/kubectl/kubectl.html).\n\n### Updating from Helm 0.1\n\n**If you are a Helm 0.1 user** you will need to do an extra step when\nyou upgrade to Helm 0.2 or later. We changed our GitHub org from `deis` to\n`helm`, which means the new default charts repository is now\n`github.com/helm/charts`.\n\nTo fix quickly, simply run a couple helm commands:\n\n```\n$ helm repo rm\n$ helm repo add charts https://github.com/helm/charts\n```\n\n## Installing Helm\n\nFrom a Linux or Mac OS X client:\n```\ncurl -s https://get.helm.sh | sh\n```\n\n*or*:\n\n1. Grab a prebuilt binary from:\n  - the latest release: [ ![Download](https://api.bintray.com/packages/deis/helm/helm/images/download.svg) ](https://bintray.com/deis/helm/helm/_latestVersion#files)\n  - the CI build pipeline: [ ![Download](https://api.bintray.com/packages/deis/helm-ci/helm/images/download.svg) ](https://bintray.com/deis/helm-ci/helm/_latestVersion#files)\n2. Unzip the package and make sure `helm` is available on the PATH.\n\n### Prerequisite\n\nHelm requires an appropriately wired `kubectl` client to speak with a running Kubernetes cluster.\n\n## Using Helm\n\nTo quickly install a redis cluster:\n\n```\n$ helm update\n---\u003e Cloning into '$HOME/.helm/cache/charts'...\n---\u003e Updating cache from https://github.com/helm/charts\n---\u003e Done\n$ helm search redis\n---\u003e \tredis-cluster (redis-cluster 0.0.5) - Highly available Redis cluster with multiple sentinels and standbys.\n---\u003e \tredis-standalone (redis-standalone 0.0.1) - Standalone Redis Master\n$ helm info redis-cluster\nName: redis-cluster\nHome: http://github.com/deis/redis-cluster\nVersion: 0.0.5\nDescription: Highly available Redis cluster with multiple sentinels and standbys.\nDetails: This package provides a highly available Redis cluster with multiple sentinels and standbys. Note the `redis-master` pod is used for bootstrapping only and can be deleted once the cluster is up and running.\n$ helm install redis-cluster\n---\u003e No chart named \"redis-cluster\" in your workspace. Fetching now.\n---\u003e Fetched chart into workspace $HOME/.helm/workspace/charts/redis-cluster\n---\u003e Running `kubectl create -f` ...\nservices/redis-sentinel\npods/redis-master\nreplicationcontrollers/redis\nreplicationcontrollers/redis-sentinel\n---\u003e Done\n```\n\nTo fetch, modify and install a chart out of your local workspace:\n\n```\n$ helm update\n---\u003e Updating cache from https://github.com/helm/charts\n---\u003e Done\n$ helm fetch redis-standalone redis\n---\u003e Fetched chart into workspace $HOME/.helm/workspace/charts/redis\n---\u003e Done\n$ helm edit redis\n$ helm install redis\n---\u003e Running `kubectl create -f` ...\nreplicationcontrollers/redis-standalone\n---\u003e Done\n```\n\n## Future Plans\n\nHelm provides package manager semantics for Kubernetes workloads.  This is a novel concept.  As a result, there are a number of features that are not yet implemented and others that are not yet designed.  Your feedback is always appreciated.\n\nSome of the features we plan to tackle in the near future:\n\n- [x] Working with External (or Private) Repositories [#118](https://github.com/helm/helm/issues/118)\n- [ ] Mandatory Group Labels [#80](https://github.com/helm/helm/issues/80)\n- [ ] Linting for Charts [#96](https://github.com/helm/helm/issues/96)\n- [ ] End-to-End Testing of Charts [#4](https://github.com/helm/helm/issues/4)\n- [x] Dry-Run Installs [#78](https://github.com/helm/helm/issues/78)\n- [ ] Improved Dependency Resolution (based on service provider)\n- [ ] Upgrading Charts\n\nFor more detailed information on the project roadmap, see the [GitHub milestones](https://github.com/helm/helm/milestones).\n\n## Contributing to the Helm CLI\n\n- Make sure you have a `kubectl` client installed and configured to speak with a running Kubernetes cluster.\n- Helm requires Go 1.5\n- Install [glide](https://github.com/Masterminds/glide) \u003e= 0.7.2\n- Run the following commands:\n\n```console\ngit clone https://github.com/helm/helm.git $GOPATH/src/github.com/helm/helm\n\ncd $GOPATH/src/github.com/helm/helm\n\nmake bootstrap # installs all of helm's dependencies\n\nmake build # generates bin/helm binary\n\n./bin/helm # prints usage\n\n# optional\n\nmake install # installs helm system-wide\n\nhelm # prints usage\n\n```\n\n## License\n\nCopyright 2015 Engine Yard, Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at \u003chttp://www.apache.org/licenses/LICENSE-2.0\u003e\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcafebazaar%2Fhelm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcafebazaar%2Fhelm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcafebazaar%2Fhelm/lists"}