Cloudeka Ippool
Last updated

An address pool your Floating IPs are allocated from — either internet (public IPs) or local (private ranges). Pools are set up and sized by the platform team; you consume from them, you don't create or resize pools yourself.
kubectl get cip -n <your-namespace>
kubectl get cip -n <your-namespace> -o yamlspec.purpose
internet (public) or local (private)
spec.enable
Whether the pool is currently accepting new allocations
status.capacity
Total addresses in the pool
status.used
Addresses currently allocated
If a Service of type LoadBalancer is stuck without an EXTERNAL-IP for an unusually long time, check whether the relevant pool is near or at capacity (status.used == status.capacity) or disabled (spec.enable: false).
If the pool is at capacity or disabled, contact platform support — pool sizing is not something you can change yourself.
Last updated