Fix Version 0.6 references

This commit is contained in:
Tim Hardeck 2023-06-22 15:49:49 +02:00
parent 5eb3bc38e7
commit 7b03c0a0bb
No known key found for this signature in database
GPG Key ID: A67C496765D6E0C0
3 changed files with 9 additions and 9 deletions

View File

@ -108,7 +108,7 @@ Finally, install the agent using Helm.
--values values.yaml \\
--set apiServerCA="$API_SERVER_CA_DATA" \\
--set apiServerURL="$API_SERVER_URL" \\
fleet-agent`} {versions.next.fleetAgent}
fleet-agent`} {versions["v0.6"].fleetAgent}
</CodeBlock>
</TabItem>
<TabItem value="validate" label="Validate">
@ -193,7 +193,7 @@ Finally, install the agent using Helm.
{`helm -n cattle-fleet-system install --create-namespace --wait \\
--set clientID="$CLUSTER_CLIENT_ID" \\
--values values.yaml \\
fleet-agent`} {versions.next.fleetAgent}
fleet-agent`} {versions["v0.6"].fleetAgent}
</CodeBlock>
</TabItem>

View File

@ -31,7 +31,7 @@ use case for production.
<TabItem value="kubernetes" label="Kubernetes" default>
Fleet is a controller running on a Kubernetes cluster so an existing cluster is required. For the
single cluster use case you will install Fleet to the cluster which you intend to manage with GitOps.
Any Kubernetes community supported version of Kubernetes will work, in practice this means {versions.next.kubernetes} or greater.
Any Kubernetes community supported version of Kubernetes will work, in practice this means {versions["v0.6"].kubernetes} or greater.
</TabItem>
</Tabs>
@ -44,13 +44,13 @@ Install the following two Helm charts.
First install the Fleet CustomResourcesDefintions.
<CodeBlock language="bash">
{`helm -n cattle-fleet-system install --create-namespace --wait \\
fleet-crd`} {versions.next.fleetCRD}
fleet-crd`} {versions["v0.6"].fleetCRD}
</CodeBlock>
Second install the Fleet controllers.
<CodeBlock language="bash">
{`helm -n cattle-fleet-system install --create-namespace --wait \\
fleet`} {versions.next.fleet}
fleet`} {versions["v0.6"].fleet}
</CodeBlock>
</TabItem>
<TabItem value="verify" label="Verify">
@ -207,7 +207,7 @@ Helm charts.
First install the Fleet CustomResourcesDefintions.
<CodeBlock language="bash">
{`helm -n cattle-fleet-system install --create-namespace --wait \\
fleet-crd`} {versions.next.fleetCRD}
fleet-crd`} {versions["v0.6"].fleetCRD}
</CodeBlock>
Second install the Fleet controllers.
@ -215,7 +215,7 @@ Second 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`} {versions["v0.6"].fleet}
</CodeBlock>
</TabItem>

View File

@ -31,10 +31,10 @@ 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`} {versions.next.fleetCRD}
fleet-crd`} {versions["v0.6"].fleetCRD}
{`
helm -n cattle-fleet-system install --create-namespace --wait \\
fleet`} {versions.next.fleet}
fleet`} {versions["v0.6"].fleet}
</CodeBlock>
## Add a Git Repo to Watch