You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/experiences/flavors.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,29 @@
4
4
5
5
### API Server VIP Management Choice
6
6
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
+
```
8
22
9
23
### Choosing Kube-VIP
10
24
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:
0 commit comments