Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
After a server restart the k8s env is in an inconstintent state

After a server restart the k8s layer got in an inconsistent state. Many pods are stuck in a "terminating" state and the application layer is not accessible.
Trying to restart the pod doesn't work cause got in a "pending" state and deletion was unsuccessful.

  
  
Posted 2 years ago
Votes Newest

Answers


  1. restart containerd first and check the status

systemctl restart containerd
systemctl status containerd -l

  1. then disable swapping on the server, and finally

swapoff -a

  1. restart kubelet on each worker node

systemctl restart kubelet
systemctl status kubelet

  
  
Posted 2 years ago
8 Views
1 Answer
2 years ago
2 years ago
Tags