github.com/werf/3p-helm@v2.8.1+incompatible/docs/helm/helm_init.md (about) 1 ## helm init 2 3 initialize Helm on both client and server 4 5 ### Synopsis 6 7 8 9 This command installs Tiller (the Helm server-side component) onto your 10 Kubernetes Cluster and sets up local configuration in $HELM_HOME (default ~/.helm/). 11 12 As with the rest of the Helm commands, 'helm init' discovers Kubernetes clusters 13 by reading $KUBECONFIG (default '~/.kube/config') and using the default context. 14 15 To set up just a local environment, use '--client-only'. That will configure 16 $HELM_HOME, but not attempt to connect to a Kubernetes cluster and install the Tiller 17 deployment. 18 19 When installing Tiller, 'helm init' will attempt to install the latest released 20 version. You can specify an alternative image with '--tiller-image'. For those 21 frequently working on the latest code, the flag '--canary-image' will install 22 the latest pre-release version of Tiller (e.g. the HEAD commit in the GitHub 23 repository on the master branch). 24 25 To dump a manifest containing the Tiller deployment YAML, combine the 26 '--dry-run' and '--debug' flags. 27 28 29 ``` 30 helm init 31 ``` 32 33 ### Options 34 35 ``` 36 --canary-image use the canary Tiller image 37 -c, --client-only if set does not install Tiller 38 --dry-run do not install local or remote 39 --force-upgrade force upgrade of Tiller to the current helm version 40 --history-max int limit the maximum number of revisions saved per release. Use 0 for no limit. 41 --local-repo-url string URL for local repository (default "http://127.0.0.1:8879/charts") 42 --net-host install Tiller with net=host 43 --node-selectors string labels to specify the node on which Tiller is installed (app=tiller,helm=rocks) 44 -o, --output OutputFormat skip installation and output Tiller's manifest in specified format (json or yaml) 45 --override stringArray override values for the Tiller Deployment manifest (can specify multiple or separate values with commas: key1=val1,key2=val2) 46 --service-account string name of service account 47 --skip-refresh do not refresh (download) the local repository cache 48 --stable-repo-url string URL for stable repository (default "https://kubernetes-charts.storage.googleapis.com") 49 -i, --tiller-image string override Tiller image 50 --tiller-tls install Tiller with TLS enabled 51 --tiller-tls-cert string path to TLS certificate file to install with Tiller 52 --tiller-tls-key string path to TLS key file to install with Tiller 53 --tiller-tls-verify install Tiller with TLS enabled and to verify remote certificates 54 --tls-ca-cert string path to CA root certificate 55 --upgrade upgrade if Tiller is already installed 56 --wait block until Tiller is running and ready to receive requests 57 ``` 58 59 ### Options inherited from parent commands 60 61 ``` 62 --debug enable verbose output 63 --home string location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 64 --host string address of Tiller. Overrides $HELM_HOST 65 --kube-context string name of the kubeconfig context to use 66 --tiller-namespace string namespace of Tiller (default "kube-system") 67 ``` 68 69 ### SEE ALSO 70 * [helm](helm.md) - The Helm package manager for Kubernetes. 71 72 ###### Auto generated by spf13/cobra on 25-Jan-2018