https://github.com/camel-tooling/camel-dashboard-console
Camel Dashboard - OCP Console Plugin
https://github.com/camel-tooling/camel-dashboard-console
camel openshift
Last synced: 2 months ago
JSON representation
Camel Dashboard - OCP Console Plugin
- Host: GitHub
- URL: https://github.com/camel-tooling/camel-dashboard-console
- Owner: camel-tooling
- License: apache-2.0
- Created: 2025-02-24T09:22:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-25T14:02:32.000Z (9 months ago)
- Last Synced: 2025-09-25T15:39:54.468Z (9 months ago)
- Topics: camel, openshift
- Language: TypeScript
- Homepage: https://camel-tooling.github.io/camel-dashboard/docs/console/
- Size: 1.24 MB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Camel Dashboard Console
The UI for Camel Dashboard on Openshift
This project provides a [console plugin](https://github.com/openshift/console/tree/master/frontend/packages/console-dynamic-plugin-sdk) for [Camel](https://camel.apache.org).
The project is created using [openshift console plugin template](https://github.com/openshift/console-plugin-template)
**Current version: 0.4.2**
It requires:
* OpenShift 4.21
* [Camel Dashboard Operator](https://github.com/camel-tooling/camel-dashboard-operator)
It can also leverage the [Hawtio Online OpenShift Console Plugin](https://github.com/hawtio/hawtio-online-console-plugin).
# Installation
To install the Camel Dashboard Console please see the [installation documentation](https://camel-tooling.github.io/camel-dashboard/docs/console/).
# Development
## Local Development
Node.js 22+ and Yarn are required to build and run this locally. To run OpenShift console in a container, [podman 3.2.0+](https://podman.io) or [Docker](https://www.docker.com) is required.
For development you can login to an existing [OpenShift](https://www.redhat.com/en/technologies/cloud-computing/openshift) and run the console with the plugin included locally.
In one terminal window, run:
1. `yarn install`
2. `yarn run start`
In another terminal window, run:
1. `oc login` (requires [oc](https://console.redhat.com/openshift/downloads) and an [OpenShift cluster](https://console.redhat.com/openshift/create))
2. `yarn run start-console` (requires [Docker](https://www.docker.com) or [podman 3.2.0+](https://podman.io))
This will run the OpenShift console in a container connected to the cluster
you've logged into. The plugin HTTP server runs on port 9001 with CORS enabled.
Navigate to to see the running plugin.
## Deployment to OpenShift
To deploy the console plugin to an actual [OpenShift](https://www.redhat.com/en/technologies/cloud-computing/openshift) cluster the following are needed:
- [oc](https://console.redhat.com/openshift/downloads)
- [helm](https://helm.sh)
### Building the images locally
```sh
podman build -t quay.io/camel-tooling/camel-dashboard-console:latest .
podman push quay.io/camel-tooling/camel-dashboard-console:latest
```
**Note**: The image `quay.io/camel-tooling/camel-dashboard-console:0.4.2` is published so it can be pulled instead.
### Deploying the plugin using Helm
```sh
oc new-project camel-dashboard
helm upgrade -i camel-dashboard-console charts/camel-dashboard-console --namespace camel-dashboard --set plugin.image=quay.io/camel-tooling/camel-dashboard-console:latest
```
## The Camel Tab
In the admin perspective, in Workload, the Camel section is available:
[](screenshots/home.png)
It is also available in the developer perspective.
## User Configuration
To be able to see your Camel integrations in the Camel Dashboard you need for your user to have access to the Custom Resources created by the camel-dashboard-operator with the following permissions:
```yaml
- apiGroups:
- "camel.apache.org"
resources:
- camelapps
verbs:
- get
- list
- watch
```
You can use the helm script installation with the your values to easily create `Role`/`RoleBinding` pairs:
```yaml
camelAppRbac:
- namespace: my-project
subjects:
- apiGroup: rbac.authorization.k8s.io
kind: User
name: developer
```