Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit a731c31

Browse files
committed
docs: add example of deploying an EMLB cluster.
Signed-off-by: Chris Privitere <[email protected]>
1 parent 4ac085a commit a731c31

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

docs/experiences/flavors.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,29 @@
44

55
### API Server VIP Management Choice
66

7-
By default CPEM will be used to manage the EIP that serves as the VIP for the api-server. As of v0.6.0 you can choose to use kube-vip to manage the api-server VIP instead of CPEM.
7+
By default CPEM will be used to manage the EIP that serves as the VIP for the api-server. Other flavors include kube-vip and Equinix Metal Load Balancer.
8+
9+
### Choosing Equinix Metal Load Balancer
10+
11+
To use Equinix Metal Load Balancer, when generating the template with `clusterctl`, pass in the `--flavor emlb` flag. For example, your `clusterctl generate` command might look like the following:
12+
13+
```sh
14+
clusterctl generate cluster capi-quickstart \
15+
--kubernetes-version v1.31.0 \
16+
--control-plane-machine-count=3 \
17+
--worker-machine-count=3 \
18+
--infrastructure packet \
19+
--flavor emlb
20+
> capi-quickstart.yaml
21+
```
822

923
### Choosing Kube-VIP
1024

11-
To use kube-vip, when generating the template with `clusterctl`, pass in the `--flavor kube-vip` flag. For example, your `clusterctl generate` command might look like the following:
25+
To use kube-vip, when generating the template with `clusterctl`, pass in the `--flavor kube-vip` flag. For example, your `clusterctl generate` command might look like the following:
1226

1327
```sh
1428
clusterctl generate cluster capi-quickstart \
15-
--kubernetes-version v1.24.0 \
29+
--kubernetes-version v1.31.0 \
1630
--control-plane-machine-count=3 \
1731
--worker-machine-count=3 \
1832
--infrastructure packet \

0 commit comments

Comments
 (0)