Page cover
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Cloudeka Ippool

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 yaml
Field
Meaning

spec.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

When to check this

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).

Last updated