elasticsearch - Pod stuck in "Terminating" state -
i had cause restart fluentd-elasticsearch pod nodes. out of 7 nodes pods deleted 1 of them deleted , came "running". there way purge pod in k8s?
fluentd-elasticsearch
pods static pods created via placing pod manifest files (fluentd-es.yaml
) in directory watched kubelet. corresponding pod (a.k.a. mirror pod) same name , namespace in api server created automatically purpose of introspection -- reflects status of static pod.
kubernetes treats static pod (the pod manifest file) in directory source of truth; operations (deletion/update, etc) on mirror pod not have effect on static pod.
you encouraged move away static pods , use daemonset, except few particular use cases (e.g., standalone kubelets). system add-on pods such fluentd-elasticsearch
converted daemonset
eventually.
Comments
Post a Comment