Enhanced Console and Operator Updates for Openshift 4.21

Camel Dashboard monitoring interface

We’re happy to announce the new release of Camel Dashboard components, bringing important updates and improvements across the stack.

What’s New

Camel Monitor Operator 0.2.1

This patch release of the Camel Monitor Operator includes stability improvements and bug fixes building on the solid foundation of the 0.2.0 release.

Important: The operator now uses the CamelMonitor custom resource (shortname cmon) instead of the legacy CamelApp resource introduced in version 0.2.0.

Camel Dashboard Console 0.5.0

The latest console release includes compatibility with new CamelMonitor custom resource while keeping backward compatibility with CamelApp custom resource when monitoring Camel applications on OpenShift.

Camel Dashboard OpenShift All 4.21.2

The umbrella Helm chart has been updated to bundle the latest versions of all components, providing a seamless installation experience for OpenShift 4.21.

Installation

  1. Open the OpenShift Console
  2. Navigate to +EcosystemSoftware Catalog
  3. Search for “Camel Dashboard”
  4. Select Camel Dashboard on Openshift
  5. Configure and install

Via Helm CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Add the Helm repository
helm repo add camel-dashboard https://camel-tooling.github.io/camel-dashboard/charts
helm repo update

# Install for OpenShift 4.21
helm install camel-dashboard-openshift-all \
  camel-dashboard/camel-dashboard-openshift-all \
  --version 4.21.2 \
  -n camel-dashboard \
  --create-namespace

Upgrading from 4.21.1

Important: Helm does not automatically upgrade CRDs during chart upgrades. Version 4.21.2 introduces new CRDs from camel-monitor-operator v0.2.1. You must manually apply these CRDs before running helm upgrade:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Update your Helm repository
helm repo update

# Apply the new CRDs manually (from camel-monitor-operator v0.2.1)
kubectl apply -f https://raw.githubusercontent.com/camel-tooling/camel-monitor-operator/v0.2.1/helm/camel-monitor/crds/camel-monitor-crds.yaml

# Now upgrade the chart
helm upgrade camel-dashboard-openshift-all \
  camel-dashboard/camel-dashboard-openshift-all \
  -n camel-dashboard

For detailed upgrade instructions, see the Helm chart README.

Component Versions

This release includes:

  • camel-monitor-operator: 0.2.1
  • camel-dashboard-console: 0.5.0
  • hawtio-online-console-plugin: 0.7.0

Resources

Thank you for using Camel Dashboard! If you have feedback or encounter any issues, please open an issue on GitHub.

Last modified June 3, 2026: chore: quick blog fix (8d7b181)