github.com/Beeketing/helm@v2.12.1+incompatible/docs/helm/helm_lint.md (about) 1 ## helm lint 2 3 examines a chart for possible issues 4 5 ### Synopsis 6 7 8 This command takes a path to a chart and runs a series of tests to verify that 9 the chart is well-formed. 10 11 If the linter encounters things that will cause the chart to fail installation, 12 it will emit [ERROR] messages. If it encounters issues that break with convention 13 or recommendation, it will emit [WARNING] messages. 14 15 16 ``` 17 helm lint [flags] PATH 18 ``` 19 20 ### Options 21 22 ``` 23 -h, --help help for lint 24 --namespace string namespace to put the release into (default "default") 25 --set stringArray set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2) 26 --set-file stringArray set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2) 27 --set-string stringArray set STRING values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2) 28 --strict fail on lint warnings 29 -f, --values valueFiles specify values in a YAML file (can specify multiple) (default []) 30 ``` 31 32 ### Options inherited from parent commands 33 34 ``` 35 --debug enable verbose output 36 --home string location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 37 --host string address of Tiller. Overrides $HELM_HOST 38 --kube-context string name of the kubeconfig context to use 39 --kubeconfig string absolute path to the kubeconfig file to use 40 --tiller-connection-timeout int the duration (in seconds) Helm will wait to establish a connection to tiller (default 300) 41 --tiller-namespace string namespace of Tiller (default "kube-system") 42 ``` 43 44 ### SEE ALSO 45 46 * [helm](helm.md) - The Helm package manager for Kubernetes. 47 48 ###### Auto generated by spf13/cobra on 1-Aug-2018