github.com/koderover/helm@v2.17.0+incompatible/docs/helm/helm_serve.md (about) 1 ## helm serve 2 3 Start a local http web server 4 5 ### Synopsis 6 7 8 This command starts a local chart repository server that serves charts from a local directory. 9 10 The new server will provide HTTP access to a repository. By default, it will 11 scan all of the charts in '$HELM_HOME/repository/local' and serve those over 12 the local IPv4 TCP port (default '127.0.0.1:8879'). 13 14 This command is intended to be used for educational and testing purposes only. 15 It is best to rely on a dedicated web server or a cloud-hosted solution like 16 Google Cloud Storage for production use. 17 18 See https://github.com/helm/helm/blob/master/docs/chart_repository.md#hosting-chart-repositories 19 for more information on hosting chart repositories in a production setting. 20 21 22 ``` 23 helm serve [flags] 24 ``` 25 26 ### Options 27 28 ``` 29 --address string Address to listen on (default "127.0.0.1:8879") 30 -h, --help help for serve 31 --repo-path string Local directory path from which to serve charts 32 --url string External URL of chart repository 33 ``` 34 35 ### Options inherited from parent commands 36 37 ``` 38 --debug Enable verbose output 39 --home string Location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 40 --host string Address of Tiller. Overrides $HELM_HOST 41 --kube-context string Name of the kubeconfig context to use 42 --kubeconfig string Absolute path of the kubeconfig file to be used 43 --tiller-connection-timeout int The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300) 44 --tiller-namespace string Namespace of Tiller (default "kube-system") 45 ``` 46 47 ### SEE ALSO 48 49 * [helm](helm.md) - The Helm package manager for Kubernetes. 50 51 ###### Auto generated by spf13/cobra on 16-May-2019