Pin metallb to the last stable version

We are in the process of transitioning metallb's configuration from
configmap to crds, and the main branch is just half way through it.
Here we instruct users to consume the latest stable release that uses
the configmap for configuring it.

Signed-off-by: Federico Paolinelli <fpaoline@redhat.com>
This commit is contained in:
Federico Paolinelli
2022-03-21 10:30:45 +01:00
parent dcb8044515
commit a96317dc70

View File

@@ -29,13 +29,13 @@ description: |-
### Create the metallb namespace
{{< codeFromInline lang="bash" >}}
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/master/manifests/namespace.yaml
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.12.1/manifests/namespace.yaml
{{< /codeFromInline >}}
### Apply metallb manifest
{{< codeFromInline lang="bash" >}}
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/master/manifests/metallb.yaml
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.12.1/manifests/metallb.yaml
{{< /codeFromInline >}}
Wait for metallb pods to have a status of Running
@@ -71,6 +71,7 @@ The following example creates a loadbalancer service that routes to two http-ech
```yaml
{{% readFile "static/examples/loadbalancer/usage.yaml" %}}
```
Apply the contents
{{< codeFromInline lang="yaml" >}}
@@ -89,7 +90,3 @@ for _ in {1..10}; do
curl ${LB_IP}:5678
done
```