Guide : Helm Quickstart Guide
prerequisites :
- A Kubernetes cluster
- Deciding what security configurations to apply to your installation, if any
- Installing and configuring
Helm(client)
andTiller(Server)
, the cluster-side service.
Installations:
- Helm (Client): From the Binary Release
- Helm Tiller(Server): Easy In-Cluster Installation
Developing Templates: template
CHARTS:
Helm charts are structured like this:
mychart/
Chart.yaml
values.yaml
charts/
templates/
...
Create Chart:
helm create <chart name>
From here on, we’ll be working in the <chart name>
directory.
Using Helm:
helm install <chart name>
will be installed helm chart
chart name examples:
stable/voyager
appscode/swift
local/stash
helm repo list
helm get manifest <manifest name>
actual template will be loaded
helm list
helm delete <helm-deploy-name> --purge