ktube dashboard

Open the KTube dashboard in your default web browser.

Usage

$ ktube dashboard [flags]

Description

This command starts a port-forward to the KTube dashboard service and opens the dashboard URL in your browser. The dashboard connects to your local cluster via the port-forward.

Note: The dashboard is a static web app hosted at console.ktube.dev. Your data stays local - it connects to localhost via port-forward.

Flags

FlagDefaultDescription
--port8080Local port for port-forward
--namespacektube-systemNamespace where KTube is installed
--no-browserfalseDo not open browser automatically

Examples

Open Dashboard

$ ktube dashboard

Custom Port

$ ktube dashboard --port 9090

Without Opening Browser

$ ktube dashboard --no-browser

Output

Starting port-forward to ktube-dashboard...
✓ Port-forward started on localhost:8080

Opening dashboard at https://console.ktube.dev
Press Ctrl+C to stop

Troubleshooting

Dashboard not loading?

Some browsers block localhost connections from HTTPS sites. Try using Firefox or check browser console for errors.

Port already in use?

Use --port to specify a different port.

Related