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?
How to update/Patch Kube-proxy config?
2.2k Views Asked by Karthik At
1
There are 1 best solutions below
Related Questions in KUBERNETES
- How to know a Pod's own IP address from inside a container in the Pod?
- Who will decide the "specified number of pods" for replication controller in kubernetes?
- Access other containers of a pod in Kubernetes
- Kubernetes cluster using Vagrant not working after restart
- kubectl not installed with gcloud SDK
- How do I access the Kubernetes api from within a pod container?
- Exposing several services with Vagrant and Kubernetes on my own server
- Does Kubernetes provision new VMs for pods on my cloud platform?
- Any suggestion for running Aerospike on Kubernetes on CoreOS on GCE?
- Kubernetes - kubectl exec bash - session drop and line width
- Google Container Engine (GKE): "Hello Wordpress" tutorial not working (ERR_CONNECTION_REFUSED)
- Kubernetes Pod Creation Speed
- How can i set max count of pods for replication-controller per node?
- Is there a way to tell kubernetes to update your containers?
- Postgres with Kubernetes and persistentDisk
Related Questions in KUBECTL
- How to create users/groups restricted to namespace in Kubernetes using RBAC API?
- NodePort services not working as expected on AWS, possibly due to IAM ELB permissions
- How to authenticate kubectl using environment variables?
- kubectl jsonpath expression for named path
- kubectl behind a proxy
- Finding the reason for pods being killed by Minikube
- How to configure kubernetes to allow for long running interactive sessions?
- Can I get or delete a pod/resource by UID?
- Define size for /dev/shm on container engine
- What is the jsonpath for Kubernetes POD status?
- Restart container within pod
- Sharing a persistent volume between pods in Kubernetes
- Does HPA(Horizontal pod autoscaling) considers the mean of CPU utilization of multiple containers(in a pod) to scale the pods?
- Flannel fails in kubernetes cluster due to failure of subnet manager
- Kubernetes create Service in deployment+rbd mode, also same configured to succeed in default namespace, fail under non default namespace?
Related Questions in RANCHER
- "Job for [email protected] failed because a configured resource limit was exceeded"
- How to expose the Kubernetes API to a Public IP?
- Docker exec via rancher API
- Headless docker host with a headful container
- Rancher: Multiple hosts in the same physical machine
- Galera Cluster Rancher Node Scaling Issue
- Missing container attribute
- Working with Rancher+NFS
- Is it possible to set the description of an Rancher stack with rancher-compose.yml?
- setting custom port for ingress load balancer
- Rancher won't install new version of a catalog
- pdftron html2pdf sample can't work on k8s?
- How to get client ip in Kubernetes hosted application?
- Submariner “Discovering network details CIDR” did not complete
- Pushing docker image to private repository with Rancher pipeline
Related Questions in KUBE-PROXY
- Exposed Service ClusterIps aren't accessible within Minikube
- Unable to open service via kubectl proxy
- How does Load Balancing work in Kubernetes EKS with ELB and Kube-Proxy?
- Kube-proxy with IPVS mode doesn't keep a connection
- Internet connectivity inside the pod of Kubernetes is not Working
- Kube-proxy was not found in my rancher cluster
- How to fix kube-proxy Unknown proxy mode "", assuming iptables proxy issue?
- Kube-Proxy-Windows CrashLoopBackOff
- How to configure kube-proxy to serve from local node only
- Is it possible to Reverse-dns query for a POD IP address to get its hostname for a Kubernetes Deployment?
- In K8s I can not telnet to the port using the cluster IP from selector app
- AKS Kube Proxy doesn't expose metrics
- kube-proxy: Another app is currently holding the xtables lock
- In the kubernetes cluster, the host cannot access the SVC IP
- kube-proxy does not update iptables
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
if we are talking about the
Kubernetes:/etc/kuberneteson your nodekube-proxy.manifest, which is a .yml file )--cluster-cidr, it is an option tocommand:command: - /hyperkube - proxy - ... - --cluster-cidr=<your_CIDR>(actually
commandis a list in YAML implementation, and the--cluster-cidris a member of this list)Note: depending on deploying tool (including the
Rancher) this directory structure/file names might be different