Updating Helm Hub references to Artifact Hub

Signed-off-by: Bridget Kromhout <bridget@kromhout.org>
pull/8860/head
Bridget Kromhout 5 years ago
parent fc9b46067f
commit aa6b47dff8
No known key found for this signature in database
GPG Key ID: 7D8605B545A76BAF

@ -24,8 +24,8 @@ import (
const searchDesc = ` const searchDesc = `
Search provides the ability to search for Helm charts in the various places Search provides the ability to search for Helm charts in the various places
they can be stored including the Helm Hub and repositories you have added. Use they can be stored including the Artifact Hub and repositories you have added.
search subcommands to search different locations for charts. Use search subcommands to search different locations for charts.
` `
func newSearchCmd(out io.Writer) *cobra.Command { func newSearchCmd(out io.Writer) *cobra.Command {

@ -30,15 +30,16 @@ import (
) )
const searchHubDesc = ` const searchHubDesc = `
Search the Helm Hub or an instance of Monocular for Helm charts. Search Artifact Hub or an instance of Monocular for Helm charts.
Artifact Hub (https://artifacthub.io/) provides a centralized search for
publicly available packages and configurations for CNCF projects, including
Helm charts. On GitHub: https://github.com/artifacthub/hub
The Helm Hub provides a centralized search for publicly available distributed
charts. It is maintained by the Helm project. It can be visited at
https://hub.helm.sh
Monocular is a web-based application that enables the search and discovery of Monocular is a web-based application that enables the search and discovery of
charts from multiple Helm Chart repositories. It is the codebase that powers the charts from multiple Helm Chart repositories.
Helm Hub. You can find it at https://github.com/helm/monocular On GitHub: https://github.com/helm/monocular
` `
type searchHubOptions struct { type searchHubOptions struct {
@ -52,7 +53,7 @@ func newSearchHubCmd(out io.Writer) *cobra.Command {
cmd := &cobra.Command{ cmd := &cobra.Command{
Use: "hub [keyword]", Use: "hub [keyword]",
Short: "search for charts in the Helm Hub or an instance of Monocular", Short: "search for charts in the Artifact Hub or an instance of Monocular",
Long: searchHubDesc, Long: searchHubDesc,
RunE: func(cmd *cobra.Command, args []string) error { RunE: func(cmd *cobra.Command, args []string) error {
return o.run(out, args) return o.run(out, args)

@ -15,7 +15,7 @@ limitations under the License.
*/ */
// Package monocular contains the logic for interacting with monocular instances // Package monocular contains the logic for interacting with monocular instances
// like the Helm Hub. // like the original version of Helm Hub.
// //
// This is a library for interacting with monocular // This is a library for interacting with monocular
package monocular package monocular

Loading…
Cancel
Save