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
- Golang == Error: OCI runtime create failed: unable to start container process: exec: "./bin": stat ./bin: no such file or directory: unknown
- I can't create a pod in minikube on windows
- Oracle setting up on k8s cluster using helm charts enterprise edition
- Retrieve the Dockerfile configuration from the Kubernetes and also change container Java parameter?
- Summarize pods not running, by Namespace and Reason - I'm having trouble finding the reason
- How to get Java running parameters from Spring Boot running inside container in pod where no ps exist
- How do we configure prometheus server to scrape metrics from a pod with Istio sidecar proxy?
- In rke kube-proxy pod is not present
- problem with edge server registration in Eureka
- Unable to Access Kubernetes LoadBalancer Service from Local Device Outside Cluster
- Kubernetes cluster on GCE connection refused error
- Based on my experience, I've outlined the Kubernetes request flow. Could someone please add or highlight any points I might have overlooked?
- how to define StackGres helm chart "restapi" values to use internal LoadBalancer - AWS EKS
- Python3.11 can't open file [Errno 2] No such file or directory
- Cannot find remote pod service - SERVICE_UNAVAILABLE
Related Questions in KUBECTL
- kubernetes patch or add nested structure depending on if it exists
- Error in port forwarding when using kubectl
- Please kindly advice on kubectl --label-columns and -L label1 -L label2
- Failed to install krew: failed to list the remote URL for index default
- Google cloud shows persistent disk SSD is full, wherease I do not have anything deployed currently
- get entire json object via kubectl with filter on field value
- Issue with apply command in kubectl and .yml file
- Total memory requested by Pod
- Hashi Consul installed - now getting daily errors and lots of logs
- AKS - Cronjob use script file inside PVC
- Kubernetes@1 exec terminal printing network logs in pipeline
- `kubectl logs` returns 0 results, but logs exist on the Node
- NodePort Service not accepting connections : Error: connect ECONNREFUSED
- Connect to minikube cluster running on VM by kubectl from local machine
- How to install kubectl binary in kubernetes container through docker image?
Related Questions in KUBEADM
- I encountered when executing kubeadm init error issue
- Add new control plane node got failed k8s 1.21.0
- kubeadm init failing while initializing a Kubernetes cluster
- Changing kube-controller-manager.yaml with minkube
- Kubernetes: how to write cluster token to a file?
- kubeadm init error: kubeadm timed out waiting for the condition
- What is the difference between kubeadm join and kubernetes api node creation
- After certificates renewal, an error: "You must be logged in to the server (Unauthorized)"
- How to programatically get value printed by Kubernetes in --discovery-token-ca-cert-hash after using kubeadm init
- How to check pre-version for kubeadm cluster
- Start/Stop local dev kubernetes cluster created by kubeadm (like microk8s or minikube)
- Question related to root directory for containerd, docker, kubeadm
- Terraform kubernetes cluster via hetzner cloud : possible cyclic dependency between lb and server
- Pods can't connect to kube dns
- Error fetching nodes in kubernetes cluster. Connection refused Error
Related Questions in KUBE-APISERVER
- cannot get kubernetes metrics-server apiservice get going (AVAILABLE: False (FalseDiscoveryCheck)
- LoadBalancig kube-apiserver using L7 nginx
- What is latency in kube-apiserver log
- Expose Kube API server via ingress running on the same cluster. SNI
- Kubernetes api-server command inaccessible?
- scheduler cannot start if apiserver has no `--requestheader-client-ca-file`
- How to create client-cert and key from K8s config file
- Getting 'invalid bearer token' error when integrating webhook-token with Kube-apiserver: How to resolve?
- How to disable TLS handshake errors
- Get Pod details about itself from a container (without using downwardAPI or env variables approach)
- What is the value range of the log level parameter --v of kube-apiserver?
- Find service owner of a kubernetes endpoints
- Troubleshooting deepcopy-gen not generating deepcopy functions for custom Kubernetes API server
- Leaderelections failing, lease unable to be renewed automatically
- Discovering the 'audit-log-path' for a kubernetes cluster kube-apiserver
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 # Hahtags
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.