-
Notifications
You must be signed in to change notification settings - Fork 718
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kibana does not support rolling upgrades #2049
Comments
Some implementation ideas discussed offline:
|
Another idea for the version upgrade to reuse existing k8s mecanisms: set the rolling update strategy of the deployment with |
Is there still a risk we may run 2 different versions of Kibana at the same time? Example:
Maybe that's me misunderstanding the Deployment rollingUpdate though. I see in the docs that we can set
It seems to be exactly what we need here? |
Kibana currently does not support rolling upgrades.
The expected upgrade path for Kibana is to stop all Kibanas of the previous version, then start up the new version. We currently use a Deployment which does violate this invariant.
https://www.elastic.co/guide/en/kibana/current/upgrade.html
Running into trouble with saved object migrations is only one effect of having multiple versions of Kibana running at the same time, see https://www.elastic.co/guide/en/kibana/current/upgrade-migrations.html
The text was updated successfully, but these errors were encountered: