Skip to content

Commit

Permalink
Fix extra spaces appended to example lines (#3774)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewVaadin authored Oct 16, 2024
1 parent 0d6be7e commit 35cd66e
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions articles/control-center/getting-started/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,33 @@ Also, you'll need to install https://helm.sh/[Helm]. It's a Kubernetes package m

To deploy Control Center to your Kubernetes cluster, run the following Helm command:

++++
<style>
.linenums code[class*='language-'] > span {
counter-increment: line-number;
}
.linenums code[class*='language-'] > span::before {
content: counter(line-number);
color: var(--docs-code-comment-color);
font-size: var(--docs-font-size-xs);
display: inline-block;
min-width: 1em;
padding-inline-end: 0.5em;
margin-inline-end: 1em;
text-align: end;
border-right: 1px solid var(--docs-code-comment-color);
}
</style>
++++

.Terminal
[source,bash]
[.linenums,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 \
-n control-center --create-namespace \
--set serviceAccount.clusterAdmin=true \
--set service.type=LoadBalancer --set service.port=8000 \
--wait
----

<1> This installs Control Center.
Expand Down

0 comments on commit 35cd66e

Please sign in to comment.