github.com/koderover/helm@v2.17.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  It will display the latest stable versions of the charts found. If you
    12  specify the --devel flag, the output will include pre-release versions.
    13  If you want to search using a version constraint, use --version.
    14  
    15  Examples:
    16  
    17      # Search for stable release versions matching the keyword "nginx"
    18      helm search nginx
    19  
    20      # Search for release versions matching the keyword "nginx", including pre-release versions
    21      helm search nginx --devel
    22  
    23      # Search for the latest stable release for nginx-ingress with a major version of 1
    24      helm search nginx-ingress --version ^1.0.0
    25  
    26  Repositories are managed with 'helm repo' commands.
    27  
    28  To look for charts with a particular name (such as stable/mysql), try
    29  searching using vertical tabs (\v). Vertical tabs are used as the delimiter
    30  between search fields. For example:
    31  
    32      helm search --regexp '\vstable/mysql\v'
    33  
    34  To search for charts using common keywords (such as "database" or
    35  "key-value store"), use
    36  
    37      helm search database
    38  
    39  or
    40  
    41      helm search key-value store
    42  
    43  
    44  ```
    45  helm search [keyword] [flags]
    46  ```
    47  
    48  ### Options
    49  
    50  ```
    51        --col-width uint   Specifies the max column width of output (default 60)
    52        --devel            use development versions (alpha, beta, and release candidate releases), too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored
    53    -h, --help             help for search
    54    -o, --output string    Prints the output in the specified format. Allowed values: table, json, yaml (default "table")
    55    -r, --regexp           Use regular expressions for searching
    56    -v, --version string   Search using semantic versioning constraints
    57    -l, --versions         Show the long listing, with each version of each chart on its own line
    58  ```
    59  
    60  ### Options inherited from parent commands
    61  
    62  ```
    63        --debug                           Enable verbose output
    64        --home string                     Location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    65        --host string                     Address of Tiller. Overrides $HELM_HOST
    66        --kube-context string             Name of the kubeconfig context to use
    67        --kubeconfig string               Absolute path of the kubeconfig file to be used
    68        --tiller-connection-timeout int   The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300)
    69        --tiller-namespace string         Namespace of Tiller (default "kube-system")
    70  ```
    71  
    72  ### SEE ALSO
    73  
    74  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    75  
    76  ###### Auto generated by spf13/cobra on 30-Oct-2019