您好,登錄后才能下訂單哦!
關閉虛擬內存
swapoff -a
vim /etc/fstabl
#/dev/mapper/centos-swap swap
查看docker環境變量
systemctl show --property=Environment docker
設置代理取消代理
export http_proxy="http://127.0.0.1:8123/"
unset http_proxy
查看token
kubeadm token list
獲取SA中token命令
kubectl -n kube-system get secret admin-token-nwphb -o jsonpath={.data.token}|base64 -d
kubectl -n kube-system describe secret `kubectl -n kube-system get secret|grep admin-token|cut -d " " -f1`|grep "token:"|tr -s " "|cut -d " " -f2
生成token
head -c 16 /dev/urandom | od -An -t x | tr -d ' '
重新生成加入node的token
kubeadm token create --print-join-command
查看node noready原因
journalctl -f -u kubelet
查看軟件版本
yum search --showduplicates xxx
安裝特定版本軟件
apt-get install -y kubelet=1.11.3-00 kubeadm=1.11.3-00 kubectl=1.11.3-00
yum install -y kubelet-1.11.3 kubeadm-1.11.3 kubectl-1.11.3
kubernetes 集群初始化
kubeadm reset
查看特定kubernetes版本所需的鏡像
kubeadm --kubernetes-version=1.11.0 config images list
強制刪除一直屬于terminating中的pod
kubectl delete pod $POD_ID --force --grace-period=0
部署pod,deployment,daemonset 等
Kubectl create -f xxx
kubectl apply -f xx
部署pod,deployment,daemonset 等
kubectl set image deployment/nginx-deployment nginx=nginx:1.91 --record
kubectl apply -f xx(必須通過xx創建)
將節點進行taint
kubectl taint nodes <node_name> <key>=<value>:NoSchedule
將節點從taint恢復
kubectl taint nodes <node_name> <key>=<value>:NoSchedule-
將node進行隔離|驅逐
kubectl cordon <node>
kubectl drain <node>
將node從隔離狀態恢復
kubectl uncordon <node>
添加node標簽
kubectl label pod redis role=backend
刪除node標簽
kubectl label pod redis role-
小結記錄,繼續補充!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。