Install Hub
This guide installs Hub on a Kubernetes cluster in self-hosted mode. If you use Upbound Cloud, Hub is pre-installed — see Connect a control plane to register your first cluster.
Prerequisites
- A Kubernetes cluster version 1.24 or later, with cluster-admin access
- up CLI v1.x or later
- Helm 3.x
- An OIDC provider: AWS IAM, Google Cloud Identity, Azure Entra ID, or a compatible custom provider
- At least one UXP instance, Space, OSS Crossplane cluster, or Kubernetes cluster to connect after installation
Install Hub
-
Add the Upbound Helm repository.
helm repo add upbound https://charts.upbound.io
helm repo update -
Create a namespace for Hub.
kubectl create namespace upbound-hub -
Configure your OIDC provider.
up hub configureEnter your OIDC issuer URL, client ID, and client secret when prompted. You can also set these values directly in a
values.yamlfile for the Helm install step. -
Install Hub.
helm install hub upbound/hub \
--namespace upbound-hub \
--values values.yaml -
Verify the installation.
kubectl rollout status deployment/hub -n upbound-hubHub is ready when the output shows
successfully rolled out.
The Hub Console is available at the endpoint defined in your values.yaml.
Connect a control plane
-
Create a Realm to group your control planes.
up hub realm create myteam -
Generate a registration token for the Realm.
up hub connect --realm myteamThe command outputs a registration token. Copy it for the next step.
-
Apply the token on the target control plane.
kubectl apply -f <token> -
Verify the connection.
up hub connect listThe control plane appears in the list with a
Connectedstatus. -
Open the Hub Console and go to Control Plane APIs. Your newly connected cluster is visible there.
Next steps
- Use the Hub Console — Explore dashboards and resource views
- Manage Realms — Configure access control and add control planes to Realms
- Run global queries — Use
up queryto search resources across your fleet