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

     1  ## helm history
     2  
     3  Fetch release history
     4  
     5  ### Synopsis
     6  
     7  
     8  History prints historical revisions for a given release.
     9  
    10  A default maximum of 256 revisions will be returned. Setting '--max'
    11  configures the maximum length of the revision list returned.
    12  
    13  The historical release set is printed as a formatted table, e.g:
    14  
    15      $ helm history angry-bird --max=4
    16      REVISION   UPDATED                      STATUS           CHART        APP VERSION	DESCRIPTION
    17      1           Mon Oct 3 10:15:13 2016     SUPERSEDED      alpine-0.1.0  1.1		Initial install
    18      2           Mon Oct 3 10:15:13 2016     SUPERSEDED      alpine-0.1.0  1.2		Upgraded successfully
    19      3           Mon Oct 3 10:15:13 2016     SUPERSEDED      alpine-0.1.0  1.1		Rolled back to 2
    20      4           Mon Oct 3 10:15:13 2016     DEPLOYED        alpine-0.1.0  1.3		Upgraded successfully
    21  
    22  
    23  ```
    24  helm history [flags] RELEASE_NAME
    25  ```
    26  
    27  ### Options
    28  
    29  ```
    30        --col-width uint        Specifies the max column width of output (default 60)
    31    -h, --help                  help for history
    32        --max int32             Maximum number of revisions to include in history (default 256)
    33    -o, --output string         Prints the output in the specified format (json|table|yaml) (default "table")
    34        --tls                   Enable TLS for request
    35        --tls-ca-cert string    Path to TLS CA certificate file (default "$HELM_HOME/ca.pem")
    36        --tls-cert string       Path to TLS certificate file (default "$HELM_HOME/cert.pem")
    37        --tls-hostname string   The server name used to verify the hostname on the returned certificates from the server
    38        --tls-key string        Path to TLS key file (default "$HELM_HOME/key.pem")
    39        --tls-verify            Enable TLS for request and verify remote
    40  ```
    41  
    42  ### Options inherited from parent commands
    43  
    44  ```
    45        --debug                           Enable verbose output
    46        --home string                     Location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    47        --host string                     Address of Tiller. Overrides $HELM_HOST
    48        --kube-context string             Name of the kubeconfig context to use
    49        --kubeconfig string               Absolute path of the kubeconfig file to be used
    50        --tiller-connection-timeout int   The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300)
    51        --tiller-namespace string         Namespace of Tiller (default "kube-system")
    52  ```
    53  
    54  ### SEE ALSO
    55  
    56  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    57  
    58  ###### Auto generated by spf13/cobra on 16-May-2019