Gopishankar P:
Hi, How to find the network CIDR of kubernetes cluster
Mohamed Ayman:
you can use
kubectl cluster-info dump | grep -m 1 cluster-cidr
or
kubectl describe cm kubeadm-config -n kube-system |grep podSubnet
Gopishankar P:
Thanks…I will check