Is it possible to setup cluster with a different network?means master holds different ip and node holds different network ip.we will run kubeadm init on one network with host ip x.x.x.x and want to join using kubeadm join command on a node with host ip y.y.y.y.is it possible?if possible can you tell me what procedure needs to do for that?
Kubernetes setup in different network
1.6k Views Asked by Vivek Hegade M S 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 KUBEADM
- How does kubernetes select nodes to add to the load balancers on AWS?
- level=fatal msg="ipset [destroy] failed: ipset v6.29: Set cannot be destroyed: it is in use by a kernel component\n: exit status 1"
- What's the kube-public namespace for?
- kubernetes set service cidr and pod cidr the same
- Can I setup kubernetes cluster using kubeadm on ubuntu machines inside a office LAN
- Kubernetes Pods cannot find each other on different nodes
- Running Kubeadm from source build
- Kubernetes failed to pull image k8s.gcr.io
- Setting up a Kubernetes master on a different IP
- Kubernetes HA Cluster using kubeadm with nginx LB not working when 1 master node is down --Error from server: etcdserver: request timed out
- Generating a new conf files on Kubeadm 1.13.12
- Kubeadm Init failed at boot up control plane (kubelet isn't running or healthy)
- Kubernetes on worker node - kubelet.service not starting
- How to check expiry of kubernetes tokens and cert keys?
- kubeadm init error: kubeadm timed out waiting for the condition
Related Questions in KUBE-APISERVER
- k8s api-server - providing user account authorization
- How does the Kubernetes API server start a newly scheduled pod on a node?
- How to implement a K8S proxy watcher api-server?
- Expose Kube API server via ingress running on the same cluster. SNI
- What is latency in kube-apiserver log
- Patch through Kuberentes rest API
- kubelet service can't access kube-apiserver at port 6443 with https due to error net/http: TLS handshake timeout
- How do I configure NodeRestriction plug-in on kubelet?
- How do I find and call the kube-apiserver in k3s / k3d (with Calico and without it)?
- Including extra flags in the apiserver manifest file in kubernetes v1.21.0 does not seem to have any effect
- Helm Charts: How to install a package in a K0s cluster?
- Is there documentation regarding exceptions thrown by kubernetes api server, it would be good to have in java but any language will do
- Kubernetes setup in different network
- How to keep minkube kube-apiserver from using up a tone of %CPU?
- Expose kube-apiserver with additional IP address
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?
I suggest you read up documentation here especially the Before you begin section where it suggests you need to have a setup having full network connectivity , with private or public network. Also , you need to have Pod network add-on such as Calico , flannel etc for connectivity between pods in your nodes, instruction for which is also detailed in the above link.