GitHub user kiranchavala added a comment to the discussion: CKS - option to define Calico ippool during deployment
@chunkyen By default, Calico uses the 192.168.0.0/16 network for its pod IP pool when you install it with the standard manifests. During the CKS ISO creation we have used the default calico yaml ./create-kubernetes-binaries-iso.sh ./ 1.33.1 1.7.1 1.33.0 https://raw.githubusercontent.com/projectcalico/calico/v3.30.0/manifests/calico.yaml https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml setup-v1.33.1-calico Once the cks is deployed check the ippool that is being used for pods kubectl get ippool.crd.projectcalico.org -o yaml You can edit the IP pool to change the CIDR to a different subnet that fits your network architecture better. For example, you might choose to use 10.0.0.0/16. kubectl edit ippool default-ipv4-ippool Redeploy the pods kubectl delete pod –all -A GitHub link: https://github.com/apache/cloudstack/discussions/11999#discussioncomment-14922756 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
