Questions tagged [readinessprobe]
114 questions
2
votes
2 answers
Does readinessProbe keep pinging the url
I am using readinessprobe for rolling updates. It works fine. But even after pods comes up. It keeps pinging healthz even after pod is running. I was assuming it will stop pinging when pods are up and running. Is it right?
specs:
containers:
-…

Hacker
- 7,798
- 19
- 84
- 154
1
vote
2 answers
Executing readiness.httpGet: Readiness probe failed: No such host
The following pod definition successfully executes a readinessProbe, which makes a request to the service service-am-i-ready that connects to pods on the same cluster.
apiVersion: v1
kind: Pod
metadata:
creationTimestamp: null
labels:
run:…

Moritz Wolff
- 436
- 1
- 7
- 16
1
vote
0 answers
Kubernetes readinessProbe Failed
Pod works normally and internal applications run normally when using only the livenessProbe.
Pod fails when you add with readinessProbe.
Pod runs normally when using only the livenessProbe.
I want to use the readinessProbe with it, but it keeps…

JoDev
- 11
- 3
1
vote
0 answers
RabbitMQ Cluster Deployment error on K8 - Readiness probe failed
K8 Tools version I am using: kubelet=1.19.16-00 kubeadm=1.19.16-00 kubectl=1.19.16-00
RabbitMQ cluster operator is running successfully but the cluster is not able to setup due to some network related issues (my guess..)
cluster operator is running…

Sandeep R
- 11
- 1
- 2
1
vote
0 answers
Spring boot readiness probe givining out of service in kubernetes pod though locally running fine
Both my liveness and readiness shows status up when I am testing them locally. Running my service in kubernetes is a different story. Seems like the liveness is also working fine but readiness is giving 503. I have tried to test it from my docker…

Fay007
- 2,707
- 3
- 28
- 58
1
vote
2 answers
Do the # in front of success and failure in Kubectl pod Describe (Kubernetes) mean something?
Does the # in front of success and failure in a Kubectl describe (refer picture) meant to represent something?
All of the elements in each of those probes represent a config element for the probe but success and failure are prefixed with a #. I…

Manglu
- 10,744
- 12
- 44
- 57
1
vote
0 answers
Readiness probe failed: Get "http://IP/health" dial tcp connection refused - GKE
After almost 120 days that services are working well in the containers which in the pods and managed by the deployment resource, I suddenly got the readinessProbe failed error which caused a block of the traffic from the Ingress to the…

Raz Buchnik
- 7,753
- 14
- 53
- 96
1
vote
1 answer
Proper Usage of Kubernetes Probes
TL;DR is the last paragraph, but the rest is here for context if that's not clear enough.
I have a K8s pod running a PHP application. It's split up into an FPM container, and an Nginx container. The liveness and readiness checks are set up to check…

Afraz
- 795
- 1
- 6
- 20
1
vote
1 answer
How to write readinessprobe for sidekiq
Since sidekiq doesn't provide external URL, is there anyway to add readinessprobe to sidekiq container?
The container only runs
bundle exec sidekiq
right now.
Can I write a simple script which just executes sidekiq command and how do I expose it to…

Harshini
- 459
- 1
- 7
- 23
1
vote
0 answers
If the Camel Route crashes, is it removed from the Camel Context? If not, how can I check that it is no longer executed?
I have a readiness probe based on the fact that the number of Apache Camel routes loaded to the CamelContext isn't decreasing. Am I right and can rely on this count as a scent of silently failed routes?
logger.info("Routes in context count:" +…

Eljah
- 4,188
- 4
- 41
- 85
1
vote
0 answers
Getting readiness probe failed: dial tcp :5672 connect: connection refused error in rabbitmq-cluster pods
I am new to rabbitmq and would appreciate help in the issue I am facing.
I have deployed rabbitmq using the rabbitmq cluster k8s operator on openshift which is hosted on Azure. (This is the guide I referred to deploy the operator).
The operator and…

Aishwarya Kher
- 11
- 3
1
vote
1 answer
Readiness fails in the Eclipse Hono pods of the Cloud2Edge package
I am a bit desperate and I hope someone can help me. A few months ago I installed the eclipse cloud2edge package on a kubernetes cluster by following the installation instructions, creating a persistentVolume and running the helm install command…

Julia Robles
- 37
- 3
1
vote
1 answer
Liveness/Readiness probe failure for bitnami/zookeeper and bitnami/kafka image
I am trying to add liveness and readinessprobe for zookeeper using bitnami/zookeeper image, but the pod creation is failing, please let me know what values need to be added in liveness and readiness probe.
Below is the value that I have tried…

SVD
- 385
- 4
- 24
1
vote
1 answer
What exactly means that K8s will stop route traffic to the pod while the readiness probe is fail
The problem I'm trying to solve is horizontal scaling for the web application, where some sessions lead to high CPU usage. The idea is to use Readiness probe to inform K8s that pod is loaded with the current task and new traffic has to be sent to…

Dmytro Sirant
- 118
- 10
1
vote
1 answer
Kubernetes Liveness and readiness probes causing error logs 'http: TLS handshake error from 10.234.0.1:49330: EOF'
I am configuring readiness and liveness probes for my kuberenetes deployment.
Here is how i added it:
ports:
- name: http
containerPort: {{ .Values.service.internalPort }}
protocol: TCP
livenessProbe:
tcpSocket:
port:…

AnjK
- 2,887
- 7
- 37
- 64