f.BoolVarP(&sc.regexp,"regexp","r",false,"Use regular expressions for searching")
f.BoolVarP(&sc.versions,"versions","l",false,"Show the long listing, with each version of each chart on its own line")
f.BoolVar(&sc.devel,"devel",false,"use development versions (alpha, beta, and release candidate releases), too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored")
f.StringVarP(&sc.version,"version","v","","Search using semantic versioning constraints")
f.UintVar(&sc.colWidth,"col-width",60,"Specifies the max column width of output")
Search reads through all of the repositories configured on the system, and
looks for matches.
It will display the latest stable versions of the charts found. If you
specify the --devel flag, the output will include pre-release versions.
If you want to search using a version constraint, use --version.
Examples:
# Search for stable release versions matching the keyword "nginx"
helm search nginx
# Search for release versions matching the keyword "nginx", including pre-release versions
helm search nginx --devel
# Search for the latest patch release for nginx-ingress 1.x
helm search nginx-ingress --version ^1.0.0
Repositories are managed with 'helm repo' commands.
To look for charts with a particular name (such as stable/mysql), try
@ -34,6 +49,7 @@ helm search [keyword] [flags]
```
--col-width uint Specifies the max column width of output (default 60)
--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
-h, --help help for search
-o, --output string Prints the output in the specified format. Allowed values: table, json, yaml (default "table")
-r, --regexp Use regular expressions for searching
@ -57,4 +73,4 @@ helm search [keyword] [flags]
* [helm](helm.md) - The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on 24-Sep-2019
###### Auto generated by spf13/cobra on 25-Oct-2019