diff --git a/frontend/package.json b/frontend/package.json index 0af1311..7afac2c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -3,7 +3,7 @@ "version": "1.0.0", "description": "OperatorHub.io showcases community operators and provides information on operators and how to contribute.", "main": "index.js", - "repository": "https://github.com/operator-framework/operatorhub.io.git", + "repository": "https://github.com/k8s-operatorhub/operatorhub.io.git", "private": true, "dependencies": { "@babel/core": "^7.7.5", diff --git a/frontend/src/components/modals/UploadPackageFromGithubModal.tsx b/frontend/src/components/modals/UploadPackageFromGithubModal.tsx index e79080f..9649c07 100644 --- a/frontend/src/components/modals/UploadPackageFromGithubModal.tsx +++ b/frontend/src/components/modals/UploadPackageFromGithubModal.tsx @@ -31,8 +31,8 @@ class UploadPackageFromGithubModal extends React.PureComponent @@ -292,7 +292,7 @@ class UploadPackageFromGithubModal extends React.PureComponent diff --git a/frontend/src/index.html b/frontend/src/index.html index d38ead8..cd79913 100755 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -119,10 +119,10 @@

Enabling JavaScript is required to run this app.

This app was built with JavaScript to provide a fast search experience. The underlying data this app presents is available at https://github.com/operator-framework/community-operators + href="https://github.com/k8s-operatorhub/community-operators">https://github.com/k8s-operatorhub/community-operators (and you can contribute new operators there).

The source code for this site is available at https://github.com/operator-framework/operatorhub.io. + href="https://github.com/k8s-operatorhub/operatorhub.io">https://github.com/k8s-operatorhub/operatorhub.io.

@@ -133,4 +133,4 @@

Enabling JavaScript is required to run this app.

- \ No newline at end of file + diff --git a/frontend/src/pages/documentation/Contribute.tsx b/frontend/src/pages/documentation/Contribute.tsx index 95abb95..f36f0aa 100644 --- a/frontend/src/pages/documentation/Contribute.tsx +++ b/frontend/src/pages/documentation/Contribute.tsx @@ -263,7 +263,7 @@ const Contribute: React.FC = ({ history, ...props }) => { content: (

When you have completed drafting your catalog data, create a pull request with your Operator catalog data only - in the upstream-community-operators subdirectory. Your manifests will be checked for syntax, + in the operators subdirectory. Your manifests will be checked for syntax, completeness, and functional deployment. Any enhancements will be discussed in the PR. Upon success we will merge it and your contribution is complete.

diff --git a/frontend/src/utils/documentationLinks.ts b/frontend/src/utils/documentationLinks.ts index 7aaa316..ce2798a 100644 --- a/frontend/src/utils/documentationLinks.ts +++ b/frontend/src/utils/documentationLinks.ts @@ -1,7 +1,7 @@ -export const operatorsFramework = 'https://github.com/operator-framework'; +export const operatorsFramework = 'https://github.com/k8s-operatorhub'; export const operatorsRepo = `${operatorsFramework}/community-operators`; -export const operatorsDocumentation = `https://operator-framework.github.io/community-operators` -export const contributions = `${operatorsRepo}/tree/master/upstream-community-operators`; +export const operatorsDocumentation = `https://k8s-operatorhub.github.io/community-operators` +export const contributions = `${operatorsRepo}/tree/main/operators`; export const operatorsRepoBeforePR = `${operatorsDocumentation}/contributing-prerequisites`; export const operatorsRepoRequirements = `${operatorsDocumentation}/packaging-operator`; export const operatorSdk = `${operatorsFramework}/operator-sdk`;