Simplifying Camel Dashboard Installation with the All-in-One Helm Chart

Camel Dashboard deployment made simple with the new all-in-one Helm chart for OpenShift

We’re excited to announce the release of camel-dashboard-openshift-all, a new umbrella Helm chart that dramatically simplifies the deployment of Camel Dashboard on OpenShift clusters.

What’s Included

Previously, deploying Camel Dashboard required installing multiple components separately:

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

Now, this single Helm chart bundles all these components together with guaranteed version compatibility, eliminating the need to manage separate releases and coordinate their installation.

Simple Installation

Getting started is now as simple as:

 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 everything in one command
helm install camel-dashboard-openshift-all \
  camel-dashboard/camel-dashboard-openshift-all \
  --version 4.20.0 \
  -n camel-dashboard \
  --create-namespace

That’s it! With a single command, you get a fully functional Camel Dashboard deployment with all components properly configured and compatible.

Customization

You can still customize your installation with a values file:

1
2
3
4
5
helm install camel-dashboard-openshift-all \
  camel-dashboard/camel-dashboard-openshift-all \
  -n camel-dashboard \
  --create-namespace \
  -f my-values.yaml

For example, you might want to disable the optional Hawtio plugin or adjust resource limits.

For detailed installation instructions, see our Installation Guide.

Implementation Details

The umbrella chart uses Helm’s dependency mechanism to bundle the individual charts:

  • The operator and console plugins are included as dependencies
  • Hawtio is configured as an optional dependency
  • Chart versioning follows the OpenShift release schema (4.19, 4.20, etc.)

This approach maintains the flexibility of individual charts while providing the simplicity of a single installation.

The camel-dashboard-openshift-all chart is available now from the official Camel Dashboard Helm repository.

Requirements

  • Helm 3.x
  • OpenShift 4.19 or later

Community Contribution

Special thanks to the users and contributors who identified this pain point and helped design the solution.

If you have ideas for improving Camel Dashboard or any other Camel tooling, we encourage you to open an issue.

What’s Next?

We’re continuing to improve the Camel Dashboard tooling based on your feedback. One of the most exciting features we’re working on is enhancing the HawtIO integration experience.

Resources

Happy monitoring with Camel Dashboard!

Last modified February 9, 2026: doc: add artifacthub link in blog post (7b92109)