github.com/passone/helm@v3.0.0-beta.3+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/helm.sh/helm?status.svg)](https://godoc.org/helm.sh/helm)
     6  [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3131/badge)](https://bestpractices.coreinfrastructure.org/projects/3131)
     7  
     8  Helm is a tool for managing Charts. Charts are packages of 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 library
    24  - The library renders your templates and communicates with the Kubernetes API
    25  - Helm runs on your laptop, CI/CD, or wherever you want it to run.
    26  - Charts are Helm packages that contain at least two things:
    27    - A description of the package (`Chart.yaml`)
    28    - One or more templates, which contain Kubernetes manifest files
    29  - Charts can be stored on disk, or fetched from remote chart repositories
    30    (like Debian or RedHat packages)
    31  
    32  ## Install
    33  
    34  
    35  Binary downloads of the Helm client can be found on [the Releases page](https://github.com/helm/helm/releases/latest).
    36  
    37  Unpack the `helm` binary and add it to your PATH and you are good to go!
    38  
    39  If you want to use a package manager:
    40  
    41  - [Homebrew](https://brew.sh/) users can use `brew install kubernetes-helm`.
    42  - [Chocolatey](https://chocolatey.org/) users can use `choco install kubernetes-helm`.
    43  - [Scoop](https://scoop.sh/) users can use `scoop install helm`.
    44  - [GoFish](https://gofi.sh/) users can use `gofish install helm`.
    45  
    46  To rapidly get Helm up and running, start with the [Quick Start Guide](https://docs.helm.sh/using_helm/#quickstart-guide).
    47  
    48  See the [installation guide](https://docs.helm.sh/using_helm/#installing-helm) for more options,
    49  including installing pre-releases.
    50  
    51  ## Docs
    52  
    53  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)
    54  
    55  ## Roadmap
    56  
    57  The [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  
    61  You 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. [https://zoom.us/j/696660622](https://zoom.us/j/696660622)
    70  
    71  ### Code of conduct
    72  
    73  Participation in the Helm community is governed by the [Code of Conduct](code-of-conduct.md).