k8s node 操作与维护
Posted 芒果牛奶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了k8s node 操作与维护相关的知识,希望对你有一定的参考价值。
查看设置标签
kubectl get nodes --show-labels
kubectl label nodes node1 monitor=prometheus
使节点离线,这将阻止新的 pod 落到它们上面,驱逐现有的pod(除了DaemonSet)。默认时间为5 分钟,由 controller-manager 的 --pod-eviction-timeout 控制,pod不会重新选择节点
kubectl drain x.x.x.x --ignore-daemonsets
查看108上的pod
kubectl get pods --all-namespaces -o wide |grep \'x.x.x.x\'
kubectl get nodes
x.x.x.x Ready,SchedulingDisabled
重新使节点可调度
kubectl uncordon x.x.x.x
kubectl get nodes
x.x.x.x Ready
查看xxx上的pod
kubectl get pods --all-namespaces -o wide |grep \'x.x.x.x\'
以上是关于k8s node 操作与维护的主要内容,如果未能解决你的问题,请参考以下文章