diff --git a/README.md b/README.md index 29e56aea4..d7ffa96ee 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/artifacthub/hub) [![Licenses](https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fartifacthub%2Fhub.svg?type=shield)](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fartifacthub%2Fhub?ref=badge_shield) -[Artifact Hub](https://artifacthub.io) is a web-based application that enables finding, installing, and publishing packages and configurations for CNCF projects. +[Artifact Hub](https://artifacthub.io) is a web-based application that enables finding, installing, and publishing packages and configurations for Cloud Native packages. Discovering artifacts to use with CNCF projects can be difficult. If every CNCF project that needs to share artifacts creates its own Hub this creates a fair amount of repeat work for each project and a fractured experience for those trying to find the artifacts to consume. The Artifact Hub attempts to solve that by providing a single experience for consumers that any CNCF project can leverage. diff --git a/charts/artifact-hub/Chart.yaml b/charts/artifact-hub/Chart.yaml index b5b7e0dcf..08e7e6ceb 100644 --- a/charts/artifact-hub/Chart.yaml +++ b/charts/artifact-hub/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 name: artifact-hub -description: Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages. +description: Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages. type: application -version: 1.17.1-2 +version: 1.17.1-3 appVersion: 1.17.0 kubeVersion: ">= 1.19.0-0" home: https://artifacthub.io diff --git a/charts/artifact-hub/README.md b/charts/artifact-hub/README.md index 4ac76ae61..494d56aec 100644 --- a/charts/artifact-hub/README.md +++ b/charts/artifact-hub/README.md @@ -1,6 +1,6 @@ # Artifact Hub -[Artifact Hub](https://artifacthub.io) is a web-based application that enables finding, installing, and publishing Kubernetes packages. +[Artifact Hub](https://artifacthub.io) is a web-based application that enables finding, installing, and publishing Cloud Native packages. ## Introduction diff --git a/docs/api/openapi-monocular.yaml b/docs/api/openapi-monocular.yaml index 9dec42940..0cf40ee79 100644 --- a/docs/api/openapi-monocular.yaml +++ b/docs/api/openapi-monocular.yaml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: Artifact Hub - description: "Find, install and publish Kubernetes packages" + description: "Find, install and publish Cloud Native packages" version: 0.18.0 contact: name: Artifact Hub support diff --git a/docs/api/openapi.yaml b/docs/api/openapi.yaml index a92176282..738e12fef 100644 --- a/docs/api/openapi.yaml +++ b/docs/api/openapi.yaml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: Artifact Hub - description: "Find, install and publish Kubernetes packages" + description: "Find, install and publish Cloud Native packages" version: 1.17.0 contact: name: Artifact Hub support @@ -987,7 +987,7 @@ paths: stars: 2 description: >- Artifact Hub is a web-based application that enables - finding, installing, and publishing Kubernetes + finding, installing, and publishing Cloud Native packages. version: 0.1.0 app_version: 0.1.0 @@ -5404,7 +5404,7 @@ components: schema: type: boolean required: false - description: Whether to get only pacakges published by CNCF projects + description: Whether to get only packages published by CNCF projects OfficialParam: in: query name: official diff --git a/docs/embedding_artifacts.md b/docs/embedding_artifacts.md index 585b73fcd..968bc766b 100644 --- a/docs/embedding_artifacts.md +++ b/docs/embedding_artifacts.md @@ -28,7 +28,7 @@ The generated code would be something like this: data-responsive="false" >
-

artifact-hub: Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.

+

artifact-hub: Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.

— Open in Artifact Hub
diff --git a/docs/www/content/_index.md b/docs/www/content/_index.md index 09fa1657a..bcfba02ca 100644 --- a/docs/www/content/_index.md +++ b/docs/www/content/_index.md @@ -5,7 +5,7 @@ weight: 1 # Welcome -Welcome to the [Artifact Hub](https://artifacthub.io/) documentation. Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages. +Welcome to the [Artifact Hub](https://artifacthub.io/) documentation. Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages. The documentation is organized in the following topics: diff --git a/internal/handlers/static/handlers.go b/internal/handlers/static/handlers.go index 40da5a700..b0e37ea22 100644 --- a/internal/handlers/static/handlers.go +++ b/internal/handlers/static/handlers.go @@ -137,7 +137,7 @@ func (h *Handlers) Index(w http.ResponseWriter, r *http.Request) { } description, _ := r.Context().Value(hub.IndexMetaDescriptionKey).(string) if description == "" { - description = "Find, install and publish Kubernetes packages" + description = "Find, install and publish Cloud Native packages" } openGraphImage := h.cfg.GetString("theme.images.openGraphImage") if !strings.HasPrefix(openGraphImage, "http") { diff --git a/internal/handlers/static/handlers_test.go b/internal/handlers/static/handlers_test.go index eb460f243..ff2e1f687 100644 --- a/internal/handlers/static/handlers_test.go +++ b/internal/handlers/static/handlers_test.go @@ -118,7 +118,7 @@ func TestIndex(t *testing.T) { assert.Equal(t, http.StatusOK, resp.StatusCode) assert.Equal(t, helpers.BuildCacheControlHeader(indexCacheMaxAge), h.Get("Cache-Control")) - assert.Equal(t, []byte("title:Artifact Hub\ndescription:Find, install and publish Kubernetes packages\ngaTrackingID:1234\n"), data) + assert.Equal(t, []byte("title:Artifact Hub\ndescription:Find, install and publish Cloud Native packages\ngaTrackingID:1234\n"), data) } func TestSaveImage(t *testing.T) { diff --git a/web/public/index.html b/web/public/index.html index 6b6b57c6a..86d357153 100644 --- a/web/public/index.html +++ b/web/public/index.html @@ -10,7 +10,7 @@ <% if (process.env.NODE_ENV === 'development') { %> Artifact Hub - + @@ -28,6 +28,7 @@ <% } else { %> {{ .title }} + diff --git a/web/src/api/__fixtures__/index/15.json b/web/src/api/__fixtures__/index/15.json index c7839131e..a7210c08e 100644 --- a/web/src/api/__fixtures__/index/15.json +++ b/web/src/api/__fixtures__/index/15.json @@ -3,7 +3,7 @@ { "name": "artifacthub", "display_name": "Artifact Hub", - "description": "Find, install and publish Kubernetes packages", + "description": "Find, install and publish Cloud Native packages", "home_url": "https://test.com", "logo_image_id": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "confirmed": true, diff --git a/web/src/api/__fixtures__/index/16.json b/web/src/api/__fixtures__/index/16.json index 39334c6c7..9a822beec 100644 --- a/web/src/api/__fixtures__/index/16.json +++ b/web/src/api/__fixtures__/index/16.json @@ -3,7 +3,7 @@ { "name": "artifacthub", "display_name": "Artifact Hub", - "description": "Find, install and publish Kubernetes packages", + "description": "Find, install and publish Cloud Native packages", "home_url": "https://test.com", "logo_image_id": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "confirmed": true, diff --git a/web/src/api/__fixtures__/index/17.json b/web/src/api/__fixtures__/index/17.json index 1e2192357..80fac0d83 100644 --- a/web/src/api/__fixtures__/index/17.json +++ b/web/src/api/__fixtures__/index/17.json @@ -1,7 +1,7 @@ { "name": "artifacthub", "display_name": "Artifact Hub", - "description": "Find, install and publish Kubernetes packages", + "description": "Find, install and publish Cloud Native packages", "home_url": "https://test.com", "logo_image_id": "3cfb161e-2652-43b9-ada1-c1ced4b20111" } diff --git a/web/src/api/__fixtures__/index/18.json b/web/src/api/__fixtures__/index/18.json index 1e2192357..80fac0d83 100644 --- a/web/src/api/__fixtures__/index/18.json +++ b/web/src/api/__fixtures__/index/18.json @@ -1,7 +1,7 @@ { "name": "artifacthub", "display_name": "Artifact Hub", - "description": "Find, install and publish Kubernetes packages", + "description": "Find, install and publish Cloud Native packages", "home_url": "https://test.com", "logo_image_id": "3cfb161e-2652-43b9-ada1-c1ced4b20111" } diff --git a/web/src/layout/controlPanel/settings/userSettings/subscriptions/repositories/__fixtures__/Modal/orgs.json b/web/src/layout/controlPanel/settings/userSettings/subscriptions/repositories/__fixtures__/Modal/orgs.json index 7f1c7b09b..12a06c2ca 100644 --- a/web/src/layout/controlPanel/settings/userSettings/subscriptions/repositories/__fixtures__/Modal/orgs.json +++ b/web/src/layout/controlPanel/settings/userSettings/subscriptions/repositories/__fixtures__/Modal/orgs.json @@ -2,7 +2,7 @@ { "name": "artifacthub", "displayName": "Artifact Hub", - "description": "Find, install and publish Kubernetes packages", + "description": "Find, install and publish Cloud Native packages", "home_url": "https://test.com", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "confirmed": true, diff --git a/web/src/layout/home/__fixtures__/PackageCard/6.json b/web/src/layout/home/__fixtures__/PackageCard/6.json index 92bb075d3..f116f41c8 100644 --- a/web/src/layout/home/__fixtures__/PackageCard/6.json +++ b/web/src/layout/home/__fixtures__/PackageCard/6.json @@ -4,7 +4,7 @@ "normalizedName": "artifact-hub", "logoImageId": "95f2e608-3deb-4997-9d2b-7cc9ad5cd08d", "stars": 1, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "version": "0.1.0", "appVersion": "0.1.0", "deprecated": false, diff --git a/web/src/layout/home/__snapshots__/index.test.tsx.snap b/web/src/layout/home/__snapshots__/index.test.tsx.snap index 43398405b..15ba4acab 100644 --- a/web/src/layout/home/__snapshots__/index.test.tsx.snap +++ b/web/src/layout/home/__snapshots__/index.test.tsx.snap @@ -9,7 +9,7 @@ exports[`Home index creates snapshot 1`] = ` class="jumbotron mb-0 text-center border-0 jumbotron" >
- Artifact Hub is a web-based application that enables finding, installing, and publishing packages and configurations for CNCF projects. For example, this could include Helm charts and plugins, Falco configurations, Open Policy Agent (OPA) and Gatekeeper policies, OLM operators, Tinkerbell actions, kubectl plugins, Tekton tasks, pipelines and stepactions, KEDA scalers, CoreDNS plugins, Keptn integrations, container images, Kubewarden policies, Kyverno policies, Knative client, Backstage plugins, Argo templates, KubeArmor policies, KCL modules, Headlamp plugins, Inspektor gadgets and Meshery designs. + Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages and configurations. For example, this could include Helm charts and plugins, Falco configurations, Open Policy Agent (OPA) and Gatekeeper policies, OLM operators, Tinkerbell actions, kubectl plugins, Tekton tasks, pipelines and stepactions, KEDA scalers, CoreDNS plugins, Keptn integrations, container images, Kubewarden policies, Kyverno policies, Knative client, Backstage plugins, Argo templates, KubeArmor policies, KCL modules, Headlamp plugins, Inspektor gadgets and Meshery designs.
diff --git a/web/src/layout/home/index.test.tsx b/web/src/layout/home/index.test.tsx index 7103da694..41ef9512d 100644 --- a/web/src/layout/home/index.test.tsx +++ b/web/src/layout/home/index.test.tsx @@ -45,7 +45,7 @@ describe('Home index', () => { expect(API.getStats).toHaveBeenCalledTimes(1); }); - expect(await screen.findByText('Kubernetes packages')).toBeInTheDocument(); + expect(await screen.findByText('Cloud Native packages')).toBeInTheDocument(); expect(asFragment()).toMatchSnapshot(); }); @@ -64,7 +64,7 @@ describe('Home index', () => { expect(API.getStats).toHaveBeenCalledTimes(1); }); - expect(await screen.findByText('Kubernetes packages')).toBeInTheDocument(); + expect(await screen.findByText('Cloud Native packages')).toBeInTheDocument(); }); it('renders dash symbol when results are 0', async () => { @@ -107,7 +107,7 @@ describe('Home index', () => { const heading = await screen.findByRole('banner'); expect(heading).toBeInTheDocument(); expect(await screen.findByText(/Find, install and publish/)).toBeInTheDocument(); - expect(await screen.findByText('Kubernetes packages')).toBeInTheDocument(); + expect(await screen.findByText('Cloud Native packages')).toBeInTheDocument(); }); }); diff --git a/web/src/layout/home/index.tsx b/web/src/layout/home/index.tsx index 889c13e25..7670a2423 100644 --- a/web/src/layout/home/index.tsx +++ b/web/src/layout/home/index.tsx @@ -88,14 +88,14 @@ const HomeView = () => {
@@ -227,8 +227,8 @@ const HomeView = () => {
- Artifact Hub is a web-based application that enables finding, installing, and publishing packages and - configurations for CNCF projects. For example, this could include Helm charts and plugins, Falco + Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native + packages and configurations. For example, this could include Helm charts and plugins, Falco configurations, Open Policy Agent (OPA) and Gatekeeper policies, OLM operators, Tinkerbell actions, kubectl plugins, Tekton tasks, pipelines and stepactions, KEDA scalers, CoreDNS plugins, Keptn integrations, container images, Kubewarden policies, Kyverno policies, Knative client, Backstage diff --git a/web/src/utils/extractReadmeTOC.test.tsx b/web/src/utils/extractReadmeTOC.test.tsx index 883b21d2e..b04b173bd 100644 --- a/web/src/utils/extractReadmeTOC.test.tsx +++ b/web/src/utils/extractReadmeTOC.test.tsx @@ -1810,7 +1810,7 @@ const tests = [ { type: 'text', value: - ' is a web-based application that enables finding, installing, and publishing Kubernetes packages.', + ' is a web-based application that enables finding, installing, and publishing Cloud Native packages.', }, ], }, diff --git a/web/src/utils/isPackageOfficial.test.tsx b/web/src/utils/isPackageOfficial.test.tsx index 6fa2258d0..2e134acb2 100644 --- a/web/src/utils/isPackageOfficial.test.tsx +++ b/web/src/utils/isPackageOfficial.test.tsx @@ -13,7 +13,7 @@ const defaultPackage: Package = { logoImageId: 'f4d39ecd-b710-4b4e-a88f-234d94d73fce', stars: 0, description: - 'Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.', + 'Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.', version: '0.15.0', appVersion: '0.15.0', license: 'Apache-2.0', diff --git a/web/src/utils/updateMetaIndex.test.tsx b/web/src/utils/updateMetaIndex.test.tsx index 63661f0c7..f6130d091 100644 --- a/web/src/utils/updateMetaIndex.test.tsx +++ b/web/src/utils/updateMetaIndex.test.tsx @@ -33,7 +33,7 @@ const tests: Test[] = [ const placeholder = { title: 'Artifact Hub', - description: 'Find, install and publish Kubernetes package', + description: 'Find, install and publish Cloud Native packages', }; describe('updateMetaIndex', () => { diff --git a/web/src/utils/updateMetaIndex.ts b/web/src/utils/updateMetaIndex.ts index 577d24f3e..07e71afad 100644 --- a/web/src/utils/updateMetaIndex.ts +++ b/web/src/utils/updateMetaIndex.ts @@ -4,7 +4,7 @@ const siteName = getMetaTag('siteName'); const updateMetaIndex = ( title: string = siteName, - description: string = 'Find, install and publish Kubernetes package' + description: string = 'Find, install and publish Cloud Native packages' ): void => { document.title = title; document.querySelector(`meta[property='og:title']`)!.setAttribute('content', title); diff --git a/widget/public/index.html b/widget/public/index.html index f33246266..4b7845322 100644 --- a/widget/public/index.html +++ b/widget/public/index.html @@ -27,7 +27,7 @@ data-theme="light" data-header="true" data-stars="false" data-responsive="false">

artifact-hub: Artifact Hub is a web-based application that enables finding, - installing, and publishing Kubernetes packages.

— Open in — Open in Artifact Hub
diff --git a/widget/src/api/__fixtures__/index/1.json b/widget/src/api/__fixtures__/index/1.json index ca37bfd39..33b3c187d 100644 --- a/widget/src/api/__fixtures__/index/1.json +++ b/widget/src/api/__fixtures__/index/1.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalized_name": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logo_image_id": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "app_version": "0.20.0", diff --git a/widget/src/layout/Widget.test.tsx b/widget/src/layout/Widget.test.tsx index 6567081e3..c16df1ddf 100644 --- a/widget/src/layout/Widget.test.tsx +++ b/widget/src/layout/Widget.test.tsx @@ -67,7 +67,7 @@ describe('Widget', () => { expect(await screen.findByText('artifact-hub')).toBeInTheDocument(); expect( screen.getByText( - 'Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.' + 'Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.' ) ).toBeInTheDocument(); expect(screen.getByTitle('logo')).toBeInTheDocument(); @@ -148,7 +148,7 @@ describe('Widget', () => { expect(screen.getByText('artifact-hub')).toBeInTheDocument(); expect( screen.getByText( - 'Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.' + 'Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.' ) ).toBeInTheDocument(); expect(screen.getByTitle('logo')).toBeInTheDocument(); diff --git a/widget/src/layout/__fixtures__/Group/1.json b/widget/src/layout/__fixtures__/Group/1.json index 724433aa1..e97f2f67d 100644 --- a/widget/src/layout/__fixtures__/Group/1.json +++ b/widget/src/layout/__fixtures__/Group/1.json @@ -6,7 +6,7 @@ "normalizedName": "artifact-hub", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "version": "0.20.0", "appVersion": "0.20.0", "license": "Apache-2.0", diff --git a/widget/src/layout/__fixtures__/Group/2.json b/widget/src/layout/__fixtures__/Group/2.json index 724433aa1..e97f2f67d 100644 --- a/widget/src/layout/__fixtures__/Group/2.json +++ b/widget/src/layout/__fixtures__/Group/2.json @@ -6,7 +6,7 @@ "normalizedName": "artifact-hub", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "version": "0.20.0", "appVersion": "0.20.0", "license": "Apache-2.0", diff --git a/widget/src/layout/__fixtures__/Group/3.json b/widget/src/layout/__fixtures__/Group/3.json index 724433aa1..e97f2f67d 100644 --- a/widget/src/layout/__fixtures__/Group/3.json +++ b/widget/src/layout/__fixtures__/Group/3.json @@ -6,7 +6,7 @@ "normalizedName": "artifact-hub", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "version": "0.20.0", "appVersion": "0.20.0", "license": "Apache-2.0", diff --git a/widget/src/layout/__fixtures__/Group/4.json b/widget/src/layout/__fixtures__/Group/4.json index 724433aa1..e97f2f67d 100644 --- a/widget/src/layout/__fixtures__/Group/4.json +++ b/widget/src/layout/__fixtures__/Group/4.json @@ -6,7 +6,7 @@ "normalizedName": "artifact-hub", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "version": "0.20.0", "appVersion": "0.20.0", "license": "Apache-2.0", diff --git a/widget/src/layout/__fixtures__/Group/5.json b/widget/src/layout/__fixtures__/Group/5.json index 724433aa1..e97f2f67d 100644 --- a/widget/src/layout/__fixtures__/Group/5.json +++ b/widget/src/layout/__fixtures__/Group/5.json @@ -6,7 +6,7 @@ "normalizedName": "artifact-hub", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "version": "0.20.0", "appVersion": "0.20.0", "license": "Apache-2.0", diff --git a/widget/src/layout/__fixtures__/Widget/1.json b/widget/src/layout/__fixtures__/Widget/1.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/1.json +++ b/widget/src/layout/__fixtures__/Widget/1.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/2.json b/widget/src/layout/__fixtures__/Widget/2.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/2.json +++ b/widget/src/layout/__fixtures__/Widget/2.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/3.json b/widget/src/layout/__fixtures__/Widget/3.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/3.json +++ b/widget/src/layout/__fixtures__/Widget/3.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/4.json b/widget/src/layout/__fixtures__/Widget/4.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/4.json +++ b/widget/src/layout/__fixtures__/Widget/4.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/5.json b/widget/src/layout/__fixtures__/Widget/5.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/5.json +++ b/widget/src/layout/__fixtures__/Widget/5.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/6.json b/widget/src/layout/__fixtures__/Widget/6.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/6.json +++ b/widget/src/layout/__fixtures__/Widget/6.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/7.json b/widget/src/layout/__fixtures__/Widget/7.json index 6092d493b..7f1454c02 100644 --- a/widget/src/layout/__fixtures__/Widget/7.json +++ b/widget/src/layout/__fixtures__/Widget/7.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 2690, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/8.json b/widget/src/layout/__fixtures__/Widget/8.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/8.json +++ b/widget/src/layout/__fixtures__/Widget/8.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__fixtures__/Widget/9.json b/widget/src/layout/__fixtures__/Widget/9.json index 9fa5338e2..28ca4550e 100644 --- a/widget/src/layout/__fixtures__/Widget/9.json +++ b/widget/src/layout/__fixtures__/Widget/9.json @@ -3,7 +3,7 @@ "name": "artifact-hub", "normalizedName": "artifact-hub", "stars": 26, - "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages.", + "description": "Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.", "logoImageId": "3cfb161e-2652-43b9-ada1-c1ced4b20111", "version": "0.20.0", "appVersion": "0.20.0", diff --git a/widget/src/layout/__snapshots__/Group.test.tsx.snap b/widget/src/layout/__snapshots__/Group.test.tsx.snap index 14662b1ba..9910d657d 100644 --- a/widget/src/layout/__snapshots__/Group.test.tsx.snap +++ b/widget/src/layout/__snapshots__/Group.test.tsx.snap @@ -153,7 +153,7 @@ exports[`Group creates snapshot 1`] = `
- Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages. + Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.
- Artifact Hub is a web-based application that enables finding, installing, and publishing Kubernetes packages. + Artifact Hub is a web-based application that enables finding, installing, and publishing Cloud Native packages.