Migrate from one IP pool to another

Big picture

Migrate pods from one IP pool to another on a running cluster without network disruption.

Value

Pods are assigned IP addresses from IP pools that you configure in Calico. As the number of pods increase, you may need to increase the number of addresses available for pods to use. Or, you may need to move pods from a CIDR that was used by mistake. Calico lets you migrate from one IP pool to another one on a running cluster without network disruption.

Features

This how-to guide uses the following Calico features:

  • IPPool resource

Concepts

IP pools and cluster CIDRs

Calico supports using multiple disjoint IP pool CIDRs within the cluster. However, Kubernetes expects that all pods have addresses within the same cluster CIDR. This means that although it is technically feasible to create an IP pool outside of the cluster CIDR, we do not recommend it. Pods allocated addresses outside of the Kubernetes cluster CIDR will lose network connectivity.

Before you begin…

Verify that you are using Calico IPAM.

If you are not sure which IPAM your cluster is using, the way to tell depends on install method.

  • Operator
  • Manifest

The IPAM plugin can be queried on the default Installation resource.

  1. kubectl get installation default -o go-template --template {{.spec.cni.ipam.type}}

If your cluster is using Calico IPAM, the above command should return a result of Calico.

SSH to one of your Kubernetes nodes and examine the CNI configuration.

  1. cat /etc/cni/net.d/10-calico.conflist

Look for the entry:

  1. "ipam": {
  2. "type": "calico-ipam"
  3. },

If it is present, you are using the Calico IPAM. If the IPAM is not Calico, or the 10-calico.conflist file does not exist, you cannot use these features in your cluster.

Verify orchestrator support for changing the pod network CIDR.

Although Kubernetes supports changing the pod network CIDR, not all orchestrators do. Check your orchestrator documentation to verify.

How to

Migrate from one IP pool to another

Follow these steps to migrate pods from one IP pool to another pool.

Migrate from one IP pool to another - 图1note

If you follow these steps, existing pod connectivity will not be affected. (If you delete the old IP pool before you create and verify the new pool, existing pods will be affected.) When pods are deleted, applications may be temporarily unavailable (depending on the type of application); plan accordingly.

  1. Add a new IP pool.

Migrate from one IP pool to another - 图2note

It is highly recommended that your Calico IP pools are within the Kubernetes cluster CIDR. If pods IPs are allocated from outside of the Kubernetes cluster CIDR, some traffic flows may have NAT applied unnecessarily causing unexpected behavior.

  1. Disable the old IP pool.

Migrate from one IP pool to another - 图3note

Disabling an IP pool only prevents new IP address allocations; it does not affect the networking of existing pods.

  1. Delete pods from the old IP pool. This includes any new pods that may have been created with the old IP pool prior to disabling the pool.

  2. Verify that new pods get an address from the new IP pool.

  3. Delete the old IP pool.

Tutorial

In the following example, we created a Kubernetes cluster using kubeadm. But the IP pool CIDR we configured (192.168.0.0/16) doesn’t match the Kubernetes cluster CIDR. Let’s change the CIDR to 10.0.0.0/16, which for the purposes of this example falls within the cluster CIDR.

Let’s run calicoctl get ippool -o wide to see the IP pool, default-ipv4-ippool.

  1. NAME CIDR NAT IPIPMODE VXLANMODE DISABLED
  2. default-ipv4-ippool 192.168.0.0/16 true Always Never false

When we run calicoctl get wep --all-namespaces, we see that a pod is created using the default range (192.168.52.130/32).

  1. NAMESPACE WORKLOAD NODE NETWORKS INTERFACE
  2. kube-system coredns-6f4fd4bdf-8q7zp vagrant 192.168.52.130/32 cali800a63073ed

Let’s get started changing this pod to the new IP pool (10.0.0.0/16).

Step 1: Add a new IP pool

We add a new IPPool with the CIDR range, 10.0.0.0/16.

  1. apiVersion: projectcalico.org/v3
  2. kind: IPPool
  3. metadata:
  4. name: new-pool
  5. spec:
  6. cidr: 10.0.0.0/16
  7. ipipMode: Always
  8. natOutgoing: true

Let’s verify the new IP pool.

  1. calicoctl get ippool -o wide
  1. NAME CIDR NAT IPIPMODE DISABLED
  2. default-ipv4-ippool 192.168.0.0/16 true Always false
  3. new-pool 10.0.0.0/16 true Always false

Step 2: Disable the old IP pool

List the existing IP pool definition.

  1. calicoctl get ippool -o yaml > pools.yaml
  1. apiVersion: projectcalico.org/v3
  2. items:
  3. - apiVersion: projectcalico.org/v3
  4. kind: IPPool
  5. metadata:
  6. name: default-ipv4-ippool
  7. spec:
  8. cidr: 192.0.0.0/16
  9. ipipMode: Always
  10. natOutgoing: true
  11. - apiVersion: projectcalico.org/v3
  12. kind: IPPool
  13. metadata:
  14. name: new-pool
  15. spec:
  16. cidr: 10.0.0.0/16
  17. ipipMode: Always
  18. natOutgoing: true

Edit pools.yaml.

Disable this IP pool by setting: disabled: true

  1. apiVersion: projectcalico.org/v3
  2. kind: IPPool
  3. metadata:
  4. name: default-ipv4-ippool
  5. spec:
  6. cidr: 192.0.0.0/16
  7. ipipMode: Always
  8. natOutgoing: true
  9. disabled: true

Apply the changes.

Remember, disabling a pool only affects new IP allocations; networking for existing pods is not affected.

  1. calicoctl apply -f pools.yaml

Verify the changes.

  1. calicoctl get ippool -o wide
  1. NAME CIDR NAT IPIPMODE DISABLED
  2. default-ipv4-ippool 192.168.0.0/16 true Always true
  3. new-pool 10.0.0.0/16 true Always false

Step 3: Delete pods from the old IP pool

Next, we delete all of the existing pods from the old IP pool. (In our example, coredns is our only pod; for multiple pods you would trigger a deletion for all pods in the cluster.)

  1. kubectl delete pod -n kube-system coredns-6f4fd4bdf-8q7zp

Step 4: Verify that new pods get an address from the new IP pool

  1. Create a test namespace and nginx pod.

    1. kubectl create ns ippool-test
  2. Create an nginx pod.

    1. kubectl -n ippool-test create deployment nginx --image nginx
  3. Verify that the new pod gets an IP address from the new range.

    1. kubectl -n ippool-test get pods -l app=nginx -o wide
  4. Clean up the ippool-test namespace.

    1. kubectl delete ns ippool-test

Step 5: Delete the old IP pool

Now that you’ve verified that pods are getting IPs from the new range, you can safely delete the old pool.

  1. calicoctl delete pool default-ipv4-ippool

Additional resources