Fix line breaks in version 0.7 quickstart

This commit is contained in:
Tim Hardeck 2023-06-22 16:59:31 +02:00
parent 5daec02150
commit 6cef541586
No known key found for this signature in database
GPG Key ID: A67C496765D6E0C0
1 changed files with 4 additions and 5 deletions

View File

@ -17,13 +17,13 @@ Who needs documentation, lets just run this thing!
<Tabs>
<TabItem value="linux" label="Linux/Mac" default>
<CodeBlock language="bash">
{`brew install helm`}
{`brew install helm\n`}
{`helm repo add fleet https://rancher.github.io/fleet-helm-charts/`}
</CodeBlock>
</TabItem>
<TabItem value="windows" label="Windows" default>
<CodeBlock language="bash">
{`choco install kubernetes-helm`}
{`choco install kubernetes-helm\n`}
{`helm repo add fleet https://rancher.github.io/fleet-helm-charts/`}
</CodeBlock>
</TabItem>
@ -33,9 +33,8 @@ Install the Fleet Helm charts (there's two because we separate out CRDs for ulti
<CodeBlock language="bash">
{`helm -n cattle-fleet-system install --create-namespace --wait fleet-crd \\
fleet/fleet-crd`}
{`
helm -n cattle-fleet-system install --create-namespace --wait fleet \\
fleet/fleet-crd\n`}
{`helm -n cattle-fleet-system install --create-namespace --wait fleet \\
fleet/fleet`}
</CodeBlock>