• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.circleci/H04-Feb-2021-11265

.github/H04-Feb-2021-11588

cmd/helm/H04-Feb-2021-17,73513,301

internal/H04-Feb-2021-5,3593,514

pkg/H04-Feb-2021-42,64430,589

scripts/H04-Feb-2021-921620

testdata/H04-Feb-2021-242226

vendor/H03-May-2022-13,491,03411,075,511

.gitignoreH A D04-Feb-2021170 1211

.golangci.ymlH A D04-Feb-2021388 2926

ADOPTERS.mdH A D04-Feb-2021594 1712

CONTRIBUTING.mdH A D04-Feb-202116.9 KiB330256

KEYSH A D04-Feb-202152 KiB855834

LICENSEH A D04-Feb-202111.1 KiB203169

MakefileH A D04-Feb-20217.2 KiB226155

OWNERSH A D04-Feb-2021299 2221

README.mdH A D04-Feb-20213.3 KiB7449

SECURITY.mdH A D04-Feb-2021171 32

code-of-conduct.mdH A D04-Feb-2021137 42

go.modH A D04-Feb-20211.9 KiB5551

go.sumH A D04-Feb-2021102 KiB1,0511,050

README.md

1# Helm
2
3[![CircleCI](https://circleci.com/gh/helm/helm.svg?style=shield)](https://circleci.com/gh/helm/helm)
4[![Go Report Card](https://goreportcard.com/badge/github.com/helm/helm)](https://goreportcard.com/report/github.com/helm/helm)
5[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/helm.sh/helm/v3)
6[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3131/badge)](https://bestpractices.coreinfrastructure.org/projects/3131)
7
8Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources.
9
10Use Helm to:
11
12- Find and use [popular software packaged as Helm Charts](https://artifacthub.io/packages/search?kind=0) to run in Kubernetes
13- Share your own applications as Helm Charts
14- Create reproducible builds of your Kubernetes applications
15- Intelligently manage your Kubernetes manifest files
16- Manage releases of Helm packages
17
18## Helm in a Handbasket
19
20Helm is a tool that streamlines installing and managing Kubernetes applications.
21Think of it like apt/yum/homebrew for Kubernetes.
22
23- Helm renders your templates and communicates with the Kubernetes API
24- Helm runs on your laptop, CI/CD, or wherever you want it to run.
25- Charts are Helm packages that contain at least two things:
26  - A description of the package (`Chart.yaml`)
27  - One or more templates, which contain Kubernetes manifest files
28- Charts can be stored on disk, or fetched from remote chart repositories
29  (like Debian or RedHat packages)
30
31## Install
32
33
34Binary downloads of the Helm client can be found on [the Releases page](https://github.com/helm/helm/releases/latest).
35
36Unpack the `helm` binary and add it to your PATH and you are good to go!
37
38If you want to use a package manager:
39
40- [Homebrew](https://brew.sh/) users can use `brew install helm`.
41- [Chocolatey](https://chocolatey.org/) users can use `choco install kubernetes-helm`.
42- [Scoop](https://scoop.sh/) users can use `scoop install helm`.
43- [GoFish](https://gofi.sh/) users can use `gofish install helm`.
44- [Snapcraft](https://snapcraft.io/) users can use `snap install helm --classic`
45
46To rapidly get Helm up and running, start with the [Quick Start Guide](https://helm.sh/docs/intro/quickstart/).
47
48See the [installation guide](https://helm.sh/docs/intro/install/) for more options,
49including installing pre-releases.
50
51## Docs
52
53Get started with the [Quick Start guide](https://helm.sh/docs/intro/quickstart/) or plunge into the [complete documentation](https://helm.sh/docs)
54
55## Roadmap
56
57The [Helm roadmap uses Github milestones](https://github.com/helm/helm/milestones) to track the progress of the project.
58
59## Community, discussion, contribution, and support
60
61You can reach the Helm community and developers via the following channels:
62
63- [Kubernetes Slack](https://kubernetes.slack.com):
64  - [#helm-users](https://kubernetes.slack.com/messages/helm-users)
65  - [#helm-dev](https://kubernetes.slack.com/messages/helm-dev)
66  - [#charts](https://kubernetes.slack.com/messages/charts)
67- Mailing List:
68  - [Helm Mailing List](https://lists.cncf.io/g/cncf-helm)
69- Developer Call: Thursdays at 9:30-10:00 Pacific ([meeting details](https://github.com/helm/community/blob/master/communication.md#meetings))
70
71### Code of conduct
72
73Participation in the Helm community is governed by the [Code of Conduct](code-of-conduct.md).
74