Hi,
My elasticsearch cluster is deployed in kubernetes environment. I used readinessprobe and livenessprobe to check cluster health. But it throwing connection refused error.
Liveness probe failed: Get http://IP:9200/_cluster/health: dial tcp IP:9200: connect: connection refused
This is my probe setting.
readinessProbe:
failureThreshold: 1
httpGet:
path: /_cluster/health
port: http
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
Also I searched it google and tried NETWORK_HOST as eth0 and args as ?local=true, but nothing works.
Please help me on this issue.