Hi ES community. I'm trying to run an elasticsearch cluster on my kubernetes bare-metal setup.
I took some inspiration from here: Running Elasticsearch on Kubernetes
& tried to adapt it for my getup, but am not having full success yet.
Please look over my config & let me know where I may be in error. Thank you!
es-client | es-data | es-master | es-svc
I also modified the elasticsearch.yml config file
When I hit the service address from a pod this results:
curl -XGET 'http://elasticsearch.default.svc.kubernetes.local:9200/_cluster/stats?pretty'
{ ... }
"nodes" : {
"count" : {
"total" : 1,
"master_only" : 0,
"data_only" : 0,
"master_data" : 0,
"client" : 0
},
Can anyone help point me in the correct direction?