You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -325,8 +325,32 @@ zookeeper:
325
325
326
326
This is shown in some [examples/values-disable-monitoring.yaml](examples/values-disable-monitoring.yaml).
327
327
328
+
## Dekaf UI
329
+
330
+
[Dekaf](github.com/visortelle/dekaf) is a new open-source UI for Apache Pulsar.
331
+
332
+
> :warning: At this moment Dekaf doesn't have built-in authentication. In order to prevent unwanted access, it relies on authentication on the Pulsar broker side.
333
+
> If your Pulsar instance stores sensitive data, make sure that:
334
+
> - You have configured authentication on the Pulsar side
335
+
> - Dekaf isn't accessible from the Internet
336
+
> - Only authorized persons have access to you Kubernetes namespace
337
+
> Improvements in this area are planned to be implemented later.
338
+
339
+
To enable the Dekaf component:
340
+
341
+
- Set the `components.dekaf` property to `true` in the Helm release `values.yaml` file.
342
+
- Run the following command to make Dekaf service accessible on your local machine.
343
+
344
+
```
345
+
kubectl port-forward svc/$(kubectl get svc -l component=dekaf -o jsonpath='{.items[0].metadata.name}') 8090:8090
346
+
```
347
+
348
+
- Open <http://localhost:8090> in browser.
349
+
328
350
## Pulsar Manager
329
351
352
+
> :warning: Pulsar Manager has been poorly maintained for a long time. Consider the Dekaf UI instead.
353
+
330
354
The Pulsar Manager can be deployed alongside the pulsar cluster instance.
331
355
Depending on the given settings it uses an existing Secret within the given namespace or creates a new one, with random
332
356
passwords for both, the UI and the internal database.
0 commit comments