Now that our repository Chart list has been updated, we can search for Charts.
To list all Charts:
helm search repo
That should output something similar to:
You can see from the output that it dumped the list of all Charts we have added.
In some cases that may be useful, but an even more useful search would involve a
keyword argument. So next, we’ll search just for nginx
:
helm search repo nginx
That results in:
This new list of Charts are specific to nginx, because we passed the nginx
argument to the helm search repo
command.
Further information on the command can be found here.