I have an elasticsearch cluster on kubernetes and I'm trying to connect kibana to it. Currently this is the kibana.yml file that I mount into the config directory for my kibana pod
server.name: kibana-logging
server.host: 0.0.0.0
elasticsearch.url: http://elasticsearch:9200
elasticsearch.username: elastic
elasticsearch.password: changeme
xpack.monitoring.ui.container.elasticsearch.enabled: true
With this set up minikube service kibana
, shows an ERR_TOO_MANY_REDIRECTS
page.
Are there any changes required for my config? Thanks!
Investigating the logs for the kibana pod shows some very big requests with lots of repeating text (see followup reply)