Multiple Apps have status "TaintToleration" when listing the pods, what does this mean and does it require action?

Mannekino

Patron
Joined
Nov 14, 2012
Messages
332
Hi,

When I run k3s kubectl get pods --all-namespaces I see multiple Apps (or pods if that is the correct term) with status "TaintToleration". What does this mean? Is this bad? Does it require action? How can I prevent this from happening? I only have a single App running at the moment which is Tautulli from TrueCharts.

Code:
# k3s kubectl get pods --all-namespaces
NAMESPACE             NAME                                       READY   STATUS            RESTARTS   AGE
prometheus-operator   prometheus-operator-5dcffb7cb8-k66ml       0/1     TaintToleration   0          47h
metallb-system        controller-84d6d4db45-p6gwb                0/1     TaintToleration   0          47h
cnpg-system           cnpg-controller-manager-5d74bc79fb-zpmxr   0/1     TaintToleration   0          47h
cert-manager          cert-manager-webhook-545bd5d7d8-jljvx      0/1     TaintToleration   0          47h
cert-manager          cert-manager-cainjector-ffb4747bb-lfbch    1/1     Running           0          19h
prometheus-operator   prometheus-operator-5dcffb7cb8-6mld2       1/1     Running           0          19h
kube-system           coredns-75fc8f8fff-58mts                   1/1     Running           0          19h
kube-system           openebs-zfs-controller-0                   5/5     Running           0          19h
kube-system           openebs-zfs-node-pgjr2                     2/2     Running           0          19h
cert-manager          cert-manager-8444f6f86b-qtqv2              1/1     Running           0          19h
cnpg-system           cnpg-controller-manager-5d74bc79fb-kzrzh   1/1     Running           0          19h
cert-manager          cert-manager-webhook-545bd5d7d8-bc2mv      1/1     Running           0          19h
metallb-system        speaker-6bjfm                              1/1     Running           0          19h
metallb-system        controller-84d6d4db45-2d78b                1/1     Running           0          19h
kube-system           svclb-tautulli-2711874c-b6fgk              1/1     Running           0          19h
ix-tautulli           tautulli-64f59754dd-zsjsb                  1/1     Running           0          19h
 

Samuel Tai

Never underestimate your own stupidity
Moderator
Joined
Apr 24, 2020
Messages
5,399

No need to worry. This just means these apps are aware they can be evicted.
 

Mannekino

Patron
Joined
Nov 14, 2012
Messages
332
I don't like squatters, can I evict them forcefully or does Kubernetes law prevent me from doing so?
 

Samuel Tai

Never underestimate your own stupidity
Moderator
Joined
Apr 24, 2020
Messages
5,399
It should be possible to evict them. From the descriptions, they appear to be older versions of other running pods.
 
Top