Installation

A Helm chart is available to deploy the full Camel Dashoard to an OpenShift environment:

  • Camel Dashboard Operator: Manages Camel Dashboard instances
  • Camel Dashboard Console: OpenShift Console plugin for Camel Dashboard
  • Hawtio Online Console Plugin: Management and monitoring console for Java applications

This Helm chart follows a versioning scheme aligned with OpenShift versions:

  • Chart version X.Y.Z is compatible with OpenShift X.Y
  • The patch version (Z) indicates chart-specific updates that don’t change OCP compatibility

NOTE: Always use the latest patch version of the chart for your OpenShift version.

Additional parameters can be specified if desired. Consult the chart values file for the full set of supported parameters.

WARNING: If you previously installed Camel Dashboard components you need to uninstall them before.

Installing the Helm Chart

First, add the chart repository to the local helm configuration:

1
$ helm repo add camel-dashboard https://camel-tooling.github.io/camel-dashboard/charts

Install Camel Dashboard using the helm install command:

1
helm install camel-dashboard-openshift-all camel-dashboard/camel-dashboard-openshift-all --version 4.19.0 -n camel-dashboard --create-namespace

Configuration

By default all component will be deployed. You can choose to not deploy one or more components. Add the following to you helm install command:

  • Camel Dashboard Operator: --set camel-dashboard-operator=false
  • Camel Dashboard Console: --set camel-dashboard-console.enabled=false
  • Hawtio Online Console Plugin: --set hawtio-online-console-plugin.enabled=false

For additional configuration consult the advanced installation guides.

Last modified February 5, 2026: doc: Update documentation (bbf9f70)