docs: fix missing charts (#201)

This replaces placeholders which would be missing from fleetVersions.js
with static text, as already used in the default install instructions.
This commit is contained in:
MARCO 2024-10-31 10:53:55 +01:00 committed by GitHub
parent 82f5e546a3
commit 27a8f26c50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -299,7 +299,7 @@ First add Fleet's Helm repository.
Second install the Fleet CustomResourcesDefintions.
<CodeBlock language="bash">
{`helm -n cattle-fleet-system install --create-namespace --wait \\
fleet-crd`} {versions.next.fleetCRD}
fleet-crd fleet/fleet-crd`}
</CodeBlock>
Third install the Fleet controllers.
@ -307,7 +307,7 @@ Third install the Fleet controllers.
{`helm -n cattle-fleet-system install --create-namespace --wait \\
--set apiServerURL="$API_SERVER_URL" \\
--set-file apiServerCA="$API_SERVER_CA" \\
fleet`} {versions.next.fleet}
fleet fleet/fleet`}
</CodeBlock>
</TabItem>