Skip to content

2.1. Overview (the Dashboard Home)

Overview

The Overview page is the main screen shown first after signing in to the OPENMARU MCM Console. It is designed so the whole state of the multi-cluster environment can be taken in at a glance.

What it is for:

  • Monitoring the whole state of the multi-cluster environment
  • Checking resource usage per cluster
  • Seeing how workloads are deployed
  • Quickly identifying resources with a problem

How the Screen Is Laid Out

The Overview page is made up of four areas.

The Overview main screen

1. Summary Cards

The summary cards at the top of the page show the key measures of the multi-cluster environment.

CardDescriptionWhat is shown
ClustersThe state of the registered clustersReady / total clusters
NodesThe state of all nodesReady / total nodes, and the failed count
WorkloadsThe state of the multi-cluster workloadsReady / total workloads, and the failed count
Multi-Cluster PoliciesThe state of the propagation policiesThe number of policies applied

How status is shown:

  • Green text: a healthy state
  • Red text: failed or unhealthy

Note: clicking a card takes you to the detail list page for that resource.

2. Cluster List

Shows the detail of the registered member clusters as cards.

The cluster list

The Parts of a Cluster Card

ElementDescription
Cluster NameThe name that identifies the cluster
Status badgeShows Ready or Not Ready
Cluster Console buttonGoes to that cluster's own management console
Sync ModeShows Push or Pull mode
Kubernetes VersionThe cluster's Kubernetes version
GPU badgeShown when the cluster has GPU nodes
Node statusReady / total nodes
CPU UsageUsed / requested / allocatable cores
Memory UsageUsed / requested / allocatable GB
PodsCurrent pods / allocatable pods
LabelsThe labels applied to the cluster

The format resource usage is shown in:

used / requested / allocatable ( usage% / request% )

For example 7.57 / 68.8 / 264 Cores ( 3% / 26% )

  • Actually used: 7.57 cores
  • Requested: 68.8 cores
  • Allocatable: 264 cores
  • Usage 3%, requests 26%

Cluster Card Actions

  • Clicking the card: goes to the cluster detail page
  • The Cluster Console button: opens that cluster's own management console
  • The copy label button: copies the label value to the clipboard

3. Multi-Cluster Resource Summary

Shows the combined resource usage of every cluster.

ResourceWhat is shown
CPUThe CPU usage and allocation across all clusters
MemoryThe memory usage and allocation across all clusters
PodsThe pod count across all clusters

The format pods are shown in:

current pods + multi-cluster managed pods / maximum pods (usage%)

For example 628 + 39 / 3430 (20%)

  • 628: the member clusters' pods
  • 39: the pods Karmada manages
  • 3430: the maximum allocatable pods
  • 20%: usage

4. Multi-Cluster Workloads

Shows the multi-cluster workloads deployed through MCM.

Workload typeDescription
DeploymentsThe number of multi-cluster Deployments
StatefulSetsThe number of multi-cluster StatefulSets
DaemonSetsThe number of multi-cluster DaemonSets
CronJobsThe number of multi-cluster CronJobs
JobsThe number of multi-cluster Jobs

Note: clicking a workload entry takes you to that workload's list page.

Main Features

Live Monitoring

Everything on the Overview page updates live:

  • Cluster status changes are reflected at once
  • Resource usage is refreshed periodically
  • Workload status updates automatically

Quick Navigation

Every card and entry can be clicked to reach a detail page:

  • Summary card → the resource list page
  • Cluster card → the cluster detail page
  • Workload entry → the workload list page

Cluster Console Integration

Pressing the "Cluster Console" button on a cluster card takes you to that cluster's own management console (the OpenShift Console, the Rancher Dashboard, and so on).

Worked Examples

Scenario 1: Checking Cluster Status

  1. Look at the summary cards at the top of the Overview page
  2. A red "failed" figure on the Nodes card means there is a problem
  3. Check the "Not Ready" node count on that cluster's card
  4. Click the cluster card to reach the detail page

Scenario 2: Checking Capacity

  1. Check the overall usage in the multi-cluster resource summary
  2. Where CPU or memory usage is high (80% or more), consider adding capacity
  3. Compare usage per cluster on the individual cluster cards

Scenario 3: Seeing How Workloads Are Deployed

  1. Check which workload types are deployed in the multi-cluster workloads section
  2. Click the workload type you want to reach its list page
  3. Check the deployment detail and how it is distributed per cluster

Next Steps