github.com/koderover/helm@v2.17.0+incompatible/docs/helm/helm_version.md (about)

     1  ## helm version
     2  
     3  Print the client/server version information
     4  
     5  ### Synopsis
     6  
     7  
     8  Show the client and server versions for Helm and tiller.
     9  
    10  This will print a representation of the client and server versions of Helm and
    11  Tiller. The output will look something like this:
    12  
    13  Client: &version.Version{SemVer:"v2.0.0", GitCommit:"ff52399e51bb880526e9cd0ed8386f6433b74da1", GitTreeState:"clean"}
    14  Server: &version.Version{SemVer:"v2.0.0", GitCommit:"b0c113dfb9f612a9add796549da66c0d294508a3", GitTreeState:"clean"}
    15  
    16  - SemVer is the semantic version of the release.
    17  - GitCommit is the SHA for the commit that this version was built from.
    18  - GitTreeState is "clean" if there are no local code changes when this binary was
    19    built, and "dirty" if the binary was built from locally modified code.
    20  
    21  To print just the client version, use '--client'. To print just the server version,
    22  use '--server'.
    23  
    24  
    25  ```
    26  helm version [flags]
    27  ```
    28  
    29  ### Options
    30  
    31  ```
    32    -c, --client                Client version only
    33    -h, --help                  help for version
    34    -s, --server                Server version only
    35        --short                 Print the version number
    36        --template string       Template for version string format
    37        --tls                   Enable TLS for request
    38        --tls-ca-cert string    Path to TLS CA certificate file (default "$HELM_HOME/ca.pem")
    39        --tls-cert string       Path to TLS certificate file (default "$HELM_HOME/cert.pem")
    40        --tls-hostname string   The server name used to verify the hostname on the returned certificates from the server
    41        --tls-key string        Path to TLS key file (default "$HELM_HOME/key.pem")
    42        --tls-verify            Enable TLS for request and verify remote
    43  ```
    44  
    45  ### Options inherited from parent commands
    46  
    47  ```
    48        --debug                           Enable verbose output
    49        --home string                     Location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    50        --host string                     Address of Tiller. Overrides $HELM_HOST
    51        --kube-context string             Name of the kubeconfig context to use
    52        --kubeconfig string               Absolute path of the kubeconfig file to be used
    53        --tiller-connection-timeout int   The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300)
    54        --tiller-namespace string         Namespace of Tiller (default "kube-system")
    55  ```
    56  
    57  ### SEE ALSO
    58  
    59  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    60  
    61  ###### Auto generated by spf13/cobra on 16-May-2019