github.com/latiif/helm@v2.15.0+incompatible/docs/helm/helm_search.md (about)

     1  ## helm search
     2  
     3  Search for a keyword in charts
     4  
     5  ### Synopsis
     6  
     7  
     8  Search reads through all of the repositories configured on the system, and
     9  looks for matches.
    10  
    11  Repositories are managed with 'helm repo' commands.
    12  
    13  To look for charts with a particular name (such as stable/mysql), try
    14  searching using vertical tabs (\v). Vertical tabs are used as the delimiter
    15  between search fields. For example:
    16  
    17      helm search --regexp '\vstable/mysql\v'
    18  
    19  To search for charts using common keywords (such as "database" or
    20  "key-value store"), use
    21  
    22      helm search database
    23  
    24  or
    25  
    26      helm search key-value store
    27  
    28  
    29  ```
    30  helm search [keyword] [flags]
    31  ```
    32  
    33  ### Options
    34  
    35  ```
    36        --col-width uint   Specifies the max column width of output (default 60)
    37    -h, --help             help for search
    38    -o, --output string    Prints the output in the specified format. Allowed values: table, json, yaml (default "table")
    39    -r, --regexp           Use regular expressions for searching
    40    -v, --version string   Search using semantic versioning constraints
    41    -l, --versions         Show the long listing, with each version of each chart on its own line
    42  ```
    43  
    44  ### Options inherited from parent commands
    45  
    46  ```
    47        --debug                           Enable verbose output
    48        --home string                     Location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    49        --host string                     Address of Tiller. Overrides $HELM_HOST
    50        --kube-context string             Name of the kubeconfig context to use
    51        --kubeconfig string               Absolute path of the kubeconfig file to be used
    52        --tiller-connection-timeout int   The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300)
    53        --tiller-namespace string         Namespace of Tiller (default "kube-system")
    54  ```
    55  
    56  ### SEE ALSO
    57  
    58  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    59  
    60  ###### Auto generated by spf13/cobra on 24-Sep-2019