github.com/latiif/helm@v2.15.0+incompatible/README.md (about)

     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://godoc.org/k8s.io/helm?status.svg)](https://godoc.org/k8s.io/helm)
     6  
     7  Helm is a tool for managing Kubernetes charts. Charts are packages of
     8  pre-configured Kubernetes resources.
     9  
    10  Use Helm to:
    11  
    12  - Find and use [popular software packaged as Helm charts](https://github.com/helm/charts) 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  
    20  Helm is a tool that streamlines installing and managing Kubernetes applications.
    21  Think of it like apt/yum/homebrew for Kubernetes.
    22  
    23  - Helm has two parts: a client (`helm`) and a server (`tiller`)
    24  - Tiller runs inside of your Kubernetes cluster, and manages releases (installations)
    25    of your charts.
    26  - Helm runs on your laptop, CI/CD, or wherever you want it to run.
    27  - Charts are Helm packages that contain at least two things:
    28    - A description of the package (`Chart.yaml`)
    29    - One or more templates, which contain Kubernetes manifest files
    30  - Charts can be stored on disk, or fetched from remote chart repositories
    31    (like Debian or RedHat packages)
    32  
    33  ## Install
    34  
    35  
    36  Binary downloads of the Helm client can be found on [the Releases page](https://github.com/helm/helm/releases/latest).
    37  
    38  Unpack the `helm` binary and add it to your PATH and you are good to go!
    39  
    40  If you want to use a package manager:
    41  
    42  - [Homebrew](https://brew.sh/) users can use `brew install kubernetes-helm`.
    43  - [Chocolatey](https://chocolatey.org/) users can use `choco install kubernetes-helm`.
    44  - [Scoop](https://scoop.sh/) users can use `scoop install helm`.
    45  - [GoFish](https://gofi.sh/) users can use `gofish install helm`.
    46  - [Snap](https://snapcraft.io/) users can use `sudo snap install helm
    47    --classic`.
    48  
    49  To rapidly get Helm up and running, start with the [Quick Start Guide](https://docs.helm.sh/using_helm/#quickstart-guide).
    50  
    51  See the [installation guide](https://docs.helm.sh/using_helm/#installing-helm) for more options,
    52  including installing pre-releases.
    53  
    54  ## Docs
    55  
    56  Get started with the [Quick Start guide](https://docs.helm.sh/using_helm/#quickstart-guide) or plunge into the [complete documentation](https://docs.helm.sh)
    57  
    58  ## Roadmap
    59  
    60  The [Helm roadmap uses Github milestones](https://github.com/helm/helm/milestones) to track the progress of the project.
    61  
    62  ## Community, discussion, contribution, and support
    63  
    64  You can reach the Helm community and developers via the following channels:
    65  
    66  - [Kubernetes Slack](https://kubernetes.slack.com):
    67    - [#helm-users](https://kubernetes.slack.com/messages/helm-users)
    68    - [#helm-dev](https://kubernetes.slack.com/messages/helm-dev)
    69    - [#charts](https://kubernetes.slack.com/messages/charts)
    70  - Mailing List:
    71    - [Helm Mailing List](https://lists.cncf.io/g/cncf-helm)
    72  - Developer Call: Thursdays at 9:30-10:00 Pacific. [https://zoom.us/j/696660622](https://zoom.us/j/696660622)
    73  
    74  ### Code of conduct
    75  
    76  Participation in the Helm community is governed by the [Code of Conduct](code-of-conduct.md).