ConfigMap File:
apiVersion: v1
kind: ConfigMap
metadata:
namespace: metallb-system
name: config
data:
config: |
address-pools:
- name: my-ip-space
protocol: layer2
addresses:
- 192.168.1.240-192.168.1.250
the config.addresses only have 10 IPs.
- Create 10 Loadbalancer service(svc1 ~ svc10),All ip resources are used.
- when create the svc11 LoadBalancer service, because no ip,the LoadBalancer service external-ip is pedning status.
- delete the svc1 will release an ip address,but the svc11 still pending.
I think the svc in pending state should assign the ip address when there is an available ip.