Kubernetes Kibana Debug - CloudCommandos/JohnChan GitHub Wiki

After deploying ElasticSearch and Kibana, if Kibana has the following error log

... Another Kibana instance appears to be migrating the index. Waiting for that migration to complete. If no other Kibana instance is attempting migrations, you can get past this message by deleting index .kibana_1 and restarting Kibana...

execute the following command:

curl -X POST "<elasticsearch-logging-0-ip>:9200/_aliases" -H 'Content-Type: application/json' -d' { "actions" : [ { "add" : { "index" : ".kibana_1", "alias" : ".kibana" } } ] }'