I am using Rancher for Kubernetes Installation and cluster Management. For fixing issue related to IP Tables I need to update the cluster-cidr attribute in Kubeproxy config (https://github.com/kubernetes/kubernetes/issues/36835 ), I am not sure how to update the kube-proxy. Can someone tell me how to update it via Kubectl or UI or how to login to kubeproxy and chnage it?
if we are talking about the Kubernetes
:
/etc/kubernetes
on your nodekube-proxy.manifest
, which is a .yml file )--cluster-cidr
, it is an option to command
:command: - /hyperkube - proxy - ... - --cluster-cidr=<your_CIDR>
(actually command
is a list in YAML implementation, and the --cluster-cidr
is a member of this list)
Note: depending on deploying tool (including the Rancher
) this directory structure/file names might be different