Helm bootstraps your Kubernetes cluster with Charts that provide ready-to-use workloads like:
- A Redis cluster
- A Postgres database
- An HAProxy edge load balancer
A Chart is a unit of Kubernetes manifests that reflect best practices as determined by the Helm community. Helm's architecture is heavily influenced by Homebrew.
To view or contribute Charts, head over to the charts repo.
Helm is changing quickly. Your feedback and participation are more than welcome, but be aware that this project is considered a work in progress.
Please note that Helm is not a general-purpose tool for managing a Kubernetes cluster. For that, we recommend using kubectl.
If you are a Helm 0.1 user you will need to do an extra step when
you upgrade to Helm 0.2 or later. We changed our GitHub org from deis
to
helm
, which means the new default charts repository is now
github.com/helm/charts
.
To fix quickly, simply run a couple helm commands:
$ helm repo rm
$ helm repo add charts https://github.com/helm/charts
From a Linux or Mac OS X client:
curl -s https://get.helm.sh | bash
or:
- Grab a prebuilt binary from:
- Unzip the package and make sure
helm
is available on the PATH.
Helm requires an appropriately wired kubectl
client to speak with a running Kubernetes cluster.
To quickly install a redis cluster:
$ helm update
---> Cloning into '$HOME/.helm/cache/charts'...
---> Updating cache from https://github.com/helm/charts
---> Done
$ helm search redis
---> redis-cluster (redis-cluster 0.0.5) - Highly available Redis cluster with multiple sentinels and standbys.
---> redis-standalone (redis-standalone 0.0.1) - Standalone Redis Master
$ helm info redis-cluster
Name: redis-cluster
Home: http://github.com/deis/redis-cluster
Version: 0.0.5
Description: Highly available Redis cluster with multiple sentinels and standbys.
Details: 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.
$ helm install redis-cluster
---> No chart named "redis-cluster" in your workspace. Fetching now.
---> Fetched chart into workspace $HOME/.helm/workspace/charts/redis-cluster
---> Running `kubectl create -f` ...
services/redis-sentinel
pods/redis-master
replicationcontrollers/redis
replicationcontrollers/redis-sentinel
---> Done
To fetch, modify and install a chart out of your local workspace:
$ helm update
---> Updating cache from https://github.com/helm/charts
---> Done
$ helm fetch redis-standalone redis
---> Fetched chart into workspace $HOME/.helm/workspace/charts/redis
---> Done
$ helm edit redis
$ helm install redis
---> Running `kubectl create -f` ...
replicationcontrollers/redis-standalone
---> Done
Helm 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.
Some of the features we plan to tackle in the near future:
- Working with External (or Private) Repositories #118
- Mandatory Group Labels #80
- Linting for Charts #96
- End-to-End Testing of Charts #4
- Dry-Run Installs #78
- Improved Dependency Resolution (based on service provider)
- Upgrading Charts
For more detailed information on the project roadmap, see the GitHub milestones.
- Make sure you have a
kubectl
client installed and configured to speak with a running Kubernetes cluster. - Helm requires Go 1.5
- Install glide >= 0.8.2
- Run the following commands:
git clone https://github.com/helm/helm.git $GOPATH/src/github.com/helm/helm
cd $GOPATH/src/github.com/helm/helm
make bootstrap # installs all of helm's dependencies
make build # generates bin/helm binary
./bin/helm # prints usage
# optional
make install # installs helm system-wide
helm # prints usage
Copyright 2015 Engine Yard, Inc.
Licensed 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 http://www.apache.org/licenses/LICENSE-2.0
Unless 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.