restarting kibana in a kubernetes pod #223
Answered
by
fbaligand
ovidiaconescu
asked this question in
Q&A
-
Hey, what is the recommended way to restart kibana within a kubernetes pod after installing the plugin? If I try to |
Beta Was this translation helpful? Give feedback.
Answered by
fbaligand
Aug 17, 2021
Replies: 1 comment 2 replies
-
Well, globally, on kubernetes, it is really not recommended to modify a pod at runtime, and worst to restart a pod after then. So the recommended way is to create a new Docker image that inherits from Kibana image, then installs the plugin. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ovidiaconescu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well, globally, on kubernetes, it is really not recommended to modify a pod at runtime, and worst to restart a pod after then.
So the recommended way is to create a new Docker image that inherits from Kibana image, then installs the plugin.
Then you run in Kubernetes this new image.