From 071e8c68a362b5b26ea79e727c289e8bdb2e2ecf Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Wed, 29 Oct 2025 14:34:50 +0100 Subject: [PATCH] docs: getting started updates --- .../pages/getting_started/first_steps.adoc | 25 ++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/docs/modules/superset/pages/getting_started/first_steps.adoc b/docs/modules/superset/pages/getting_started/first_steps.adoc index e23a3b10..1559a427 100644 --- a/docs/modules/superset/pages/getting_started/first_steps.adoc +++ b/docs/modules/superset/pages/getting_started/first_steps.adoc @@ -67,12 +67,31 @@ include::example$getting_started/getting_started.sh[tag=wait-superset] Once the Superset node is created and the database is initialized, you can open Superset in your browser. -To forward the Superset port (`8088`) to localhost, run: +Use the `stackablectl` command line tool to find out the Superset URL. [source,bash] -include::example$getting_started/getting_started.sh[tag=port-forwarding] +---- +stackablectl stacklet list -Then, open `http://localhost:8088` in your browser and log in with the admin credentials from the Kubernetes secret. +┌──────────┬─────────────────┬───────────┬──────────────────────────────────────┬─────────────────────────────────┐ +│ PRODUCT ┆ NAME ┆ NAMESPACE ┆ ENDPOINTS ┆ CONDITIONS │ +╞══════════╪═════════════════╪═══════════╪══════════════════════════════════════╪═════════════════════════════════╡ +│ superset ┆ simple-superset ┆ default ┆ node-http http://192.168.49.2:30462 ┆ Available, Reconciling, Running │ +└──────────┴─────────────────┴───────────┴──────────────────────────────────────┴─────────────────────────────────┘ +---- + +Then, open the HTTP endpoint (in this example `http://192.168.49.2:30462` in your browser and log in with the user credentials for Superset. + +Again, use `stackablectl` to find out those credentials: + +[source,bash] +---- +stackablectl stacklet credentials superset simple-superset +Credentials for superset (simple-superset) in namespace "default": + + USERNAME admin + PASSWORD admin +---- image::getting_started/superset-login.png[Login screen of Superset]