Merge pull request #3934 from jstoja/improve_search_regexp_doc

Add documentation to helm search --regexp (#3927)
pull/6573/head
Matthew Fisher 6 years ago committed by GitHub
commit 126ab055ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -35,6 +35,21 @@ Search reads through all of the repositories configured on the system, and
looks for matches.
Repositories are managed with 'helm repo' commands.
To look for charts with a particular name (such as stable/mysql), try
searching using vertical tabs (\v). Vertical tabs are used as the delimiter
between search fields. For example:
helm search --regexp '\vstable/mysql\v'
To search for charts using common keywords (such as "database" or
"key-value store"), use
helm search database
or
helm search key-value store
`
// searchMaxScore suggests that any score higher than this is not considered a match.

@ -10,6 +10,21 @@ looks for matches.
Repositories are managed with 'helm repo' commands.
To look for charts with a particular name (such as stable/mysql), try
searching using vertical tabs (\v). Vertical tabs are used as the delimiter
between search fields. For example:
helm search --regexp '\vstable/mysql\v'
To search for charts using common keywords (such as "database" or
"key-value store"), use
helm search database
or
helm search key-value store
```
helm search [keyword] [flags]

Loading…
Cancel
Save