I have two container deployed in kubernates, each container has stateful application which is tightly coupled with container IP & I need to have communication between two (application is not trusting service ip). Therefore I need to assign static IP to container. Could anyone help me here ? Thanks in advance
Is it possible to assign static ip to a stateful container in kubernates? if yes how it can be
3.4k Views Asked by Vishnu At
1
There are 1 best solutions below
Related Questions in DOCKER
- sqlplus myusername/mypassword@ORCL not working with Oracle on Docker
- Golang == Error: OCI runtime create failed: unable to start container process: exec: "./bin": stat ./bin: no such file or directory: unknown
- Only the first SQL script gets executed inside Docker Postgres container
- Retrieve the Dockerfile configuration from the Kubernetes and also change container Java parameter?
- Polars with Rust: Out of Memory Error when Processing Large Dataset in Docker Using Streaming
- Compiling eBPF program in Docker fails due to missing '__u64' type
- AttributeError: module 'numba' has no attribute 'generated_jit'
- Phoenix in a docker dev environment - generated code can't be saved from VSCode
- Docker on Multipass VMs: Connecting worker nodes to swarm results in rcp error
- Facing error in creating image of my react+vite project . Dockerfile error
- NextJS Docker build fails: fetch failed ECONNREFUSED
- Docker container unable to make HTTPS requests to external API
- Failed to connect to your instance after deploying mern app on aws ec2 instance when i try to access frontend
- Connecting to Postgres running in a Docker container using psql
- Can't connect to local postgresql server from my docker container
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 STATEFUL
- How do I store a stream of data that is scarcely changing in Apache Flink
- How to build stateful services which perform exactly-once processing using Kafka transactions?
- How can I set the value of a variable before the buid method is called?
- How to call a stateful function in a stateless widget?
- How to keep stateful state when parent widget updated
- Kubernetes Stateful Set: Unable to attach or mount volume for more than one replica
- Flutter setState of *multiple instances* of a Stateful Widget in a Page
- RejectedExecutionException when running Kafka + Netty in OpenShift
- Error while creating and installing TCP Stateful Service Fabric
- REPLAY attack detection/ STATEFUL inspection possible with SNORT?
- Flutter stateless and stateful widget question
- How to use parallelism in apache flink
- How to manage state on showGeneralDialog so I can update ListView when scrolling
- Flutter add List<int> to List<List>
- How to rerun ScalaCheck Commands tests given a seed
Related Questions in IBM-CLOUD-PRIVATE
- Kubernetes IKS cloud | how to get actual hostname of the node from node describe?
- Issue with Helm client certificate
- Error 415 Supplied content type is not supported Using IBM Cloud document traslation
- Not able to access deployed application url on ibm ICP kubernetes using nodeport
- Unable to upload a zip file into the IBM Cloud S3 bucket
- How can I access IBM cloud private CE console management?
- Unable to determine the type of a Kubernetes service that was installed on a Cluster
- IBM Cloud Private: How to alert on keywords in logs
- IBM ICP Auth-pdp does not respond
- IBM Cloud Private: Credentials needed to access prometheus port 9090
- Is IBM Cloud Dedicated the right solution for deploying our application inside the corporate network?
- Outbound port blocked for pods
- Are there any recommendations for running all of part of a ICP cluster in a DMZ
- Resources running on worker node
- Is there a way to move the location of ICP private image registry of an installed ICP?
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?
A static IP cannot be assigned to a Pod.
Withing StatefulSet, you can refer to a stable network ID
If you are using GKE for your cluster, it supports
loadBalancerIP. So, at some point, you can rely on this service. Just mark the auto-assigned IP as static first.