Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make some improvements to the Control Center getting started page #3752

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions articles/control-center/getting-started/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ To deploy Control Center to your Kubernetes cluster, run the following Helm comm
.Terminal
[source,bash]
----
helm install control-center oci://docker.io/vaadin/control-center \ // <1>
-n control-center --create-namespace \ // <2>
--set serviceAccount.clusterAdmin=true \ // <3>
--set service.type=LoadBalancer --set service.port=8000 \ // <4>
--wait // <5>
helm install control-center oci://docker.io/vaadin/control-center \ # (1)
-n control-center --create-namespace \ # (2)
--set serviceAccount.clusterAdmin=true \ # (3)
--set service.type=LoadBalancer --set service.port=8000 \ # (4)
--wait # (5)
----

<1> This installs Control Center.
Expand All @@ -54,11 +54,9 @@ The wizard requires a passkey to proceed. Run the following command to retrieve
.Terminal
[source,bash]
----
kubectl -n control-center get secret control-center-passkey -o jsonpath='{.data.passkey}' | base64 --decode
kubectl -n control-center get secret control-center-passkey -o go-template='"{{ .data.passkey | base64decode }}"'
----

On Windows, you might need to remove `| base64 --decode` and use a separate tool to decode the base64 output.

image::images/welcome-step.png[Welcome Step]


Expand Down
Loading