From 5cb2ac901292c8968d7bfc3638ac5da22fb413c8 Mon Sep 17 00:00:00 2001 From: Bryan Cox Date: Wed, 13 May 2026 13:55:43 -0400 Subject: [PATCH] docs: add repositories page listing team-owned repos Co-Authored-By: Claude Opus 4.6 --- docs/content/contribute/index.md | 1 + docs/content/contribute/repositories.md | 16 ++++++++++++++++ docs/content/reference/aggregated-docs.md | 23 +++++++++++++++++++++++ docs/mkdocs.yml | 1 + 4 files changed, 41 insertions(+) create mode 100644 docs/content/contribute/repositories.md diff --git a/docs/content/contribute/index.md b/docs/content/contribute/index.md index 3471807d6e5..579cefe6efb 100644 --- a/docs/content/contribute/index.md +++ b/docs/content/contribute/index.md @@ -6,6 +6,7 @@ title: Contribute Use these resources to contribute to HyperShift. +- [Repositories](repositories.md) - [Contributing guidelines (GitHub)](https://github.com/openshift/hypershift/blob/main/.github/CONTRIBUTING.md) - [Release Process](release-process.md) - [Custom Images](custom-images.md) diff --git a/docs/content/contribute/repositories.md b/docs/content/contribute/repositories.md new file mode 100644 index 00000000000..daff04489d9 --- /dev/null +++ b/docs/content/contribute/repositories.md @@ -0,0 +1,16 @@ +--- +title: Repositories +--- + +# Repositories + +The HyperShift team owns and maintains the following repositories. + +| Repository | Description | Upstream | +|---|---|---| +| [openshift/hypershift](https://github.com/openshift/hypershift) | Main repository containing the HyperShift Operator, Control Plane Operator, CLI, API definitions, and tests. | | +| [hypershift-community/hypershift](https://github.com/hypershift-community/hypershift) | Community fork synced from openshift/hypershift. | | +| [openshift/hypershift-oadp-plugin](https://github.com/openshift/hypershift-oadp-plugin) | OADP (OpenShift API for Data Protection) plugin for HostedControlPlane backup and restore. | | +| [openshift/aws-encryption-provider](https://github.com/openshift/aws-encryption-provider) | API server encryption provider backed by AWS KMS. | [kubernetes-sigs/aws-encryption-provider](https://github.com/kubernetes-sigs/aws-encryption-provider) | +| [openshift/azure-kubernetes-kms](https://github.com/openshift/azure-kubernetes-kms) | Azure Key Vault KMS plugin for the Kubernetes API server. | [Azure/kubernetes-kms](https://github.com/Azure/kubernetes-kms) | +| [openshift/apiserver-network-proxy](https://github.com/openshift/apiserver-network-proxy) | Konnectivity proxy enabling secure communication between the API server and cluster nodes. | [kubernetes-sigs/apiserver-network-proxy](https://github.com/kubernetes-sigs/apiserver-network-proxy) | diff --git a/docs/content/reference/aggregated-docs.md b/docs/content/reference/aggregated-docs.md index fd8f2099e95..ee0ab53398c 100644 --- a/docs/content/reference/aggregated-docs.md +++ b/docs/content/reference/aggregated-docs.md @@ -826,6 +826,7 @@ title: Contribute Use these resources to contribute to HyperShift. +- Repositories - Contributing guidelines (GitHub) - Release Process - Custom Images @@ -971,6 +972,28 @@ This is a sample of how the release notes looks like added to the PR: ``` +--- + +## Source: docs/content/contribute/repositories.md + +--- +title: Repositories +--- + +# Repositories + +The HyperShift team owns and maintains the following repositories. + +| Repository | Description | Upstream | +|---|---|---| +| openshift/hypershift | Main repository containing the HyperShift Operator, Control Plane Operator, CLI, API definitions, and tests. | | +| hypershift-community/hypershift | Community fork synced from openshift/hypershift. | | +| openshift/hypershift-oadp-plugin | OADP (OpenShift API for Data Protection) plugin for HostedControlPlane backup and restore. | | +| openshift/aws-encryption-provider | API server encryption provider backed by AWS KMS. | kubernetes-sigs/aws-encryption-provider | +| openshift/azure-kubernetes-kms | Azure Key Vault KMS plugin for the Kubernetes API server. | Azure/kubernetes-kms | +| openshift/apiserver-network-proxy | Konnectivity proxy enabling secure communication between the API server and cluster nodes. | kubernetes-sigs/apiserver-network-proxy | + + --- ## Source: docs/content/contribute/run-hypershift-operator-locally.md diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 7718e393179..fb88bbfb40b 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -367,6 +367,7 @@ nav: - reference/service-publishing-strategies.md - 'Contribute': - contribute/index.md + - 'Repositories': contribute/repositories.md - 'HO/CPO Release Process': contribute/release-process.md - 'OCP Branching Tasks': contribute/branch-process.md - 'Custom Images': contribute/custom-images.md