Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The number of IPs available to metallb is currently really small (4) which means you can only create a small number of gateways (3, istio takes one) before it stops dishing out new IPs. These changes increase the number of ips to 16 and assumes the network will always give us a range allowing the use of all 256 ips, 0.0.0.[0-255] (This appears to be the case for kind networks created with podman(10.89.0.0/24) and docker(172.18.0.0/16)). Also adds an option to specify an offest (default is 0) when creating a kuadrant cluster with local-setup allowing multiple instances to be created using a different range of IPs. ``` make local-setup KIND_CLUSTER_NAME=kuadrant-local-1 SUBNET_OFFSET=0 make local-setup KIND_CLUSTER_NAME=kuadrant-local-2 SUBNET_OFFSET=1 ```
- Loading branch information