github.com/koderover/helm@v2.17.0+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 of the kubeconfig file to be used
    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 16-May-2019