亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

kubeadm安裝報錯怎么辦

發布時間:2021-06-13 16:57:51 來源:億速云 閱讀:1104 作者:小新 欄目:云計算

這篇文章給大家分享的是有關kubeadm安裝報錯怎么辦的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

kubeadm安裝報錯

現象:

由于1.15版本太低,想安裝最新版本 但升級需要逐個升級,所以放棄 直接重新安裝。先kubeadm reset,然后按照之前的步驟 安裝k8s:

master節點kubeadm初始化報錯如下:

[root@k01 ~]# kubeadm init --apiserver-advertise-address=10.129.42.131 --image-repository registry.cn-hangzhou.aliyuncs.com/lfy_k8s_images --kubernetes-version v1.21.0 --service-cidr=10.96.0.0/16 --pod-network-cidr=192.168.0.0/16
……
[control-plane] Using manifest folder "/etc/kubernetes/manifests"
[control-plane] Creating static Pod manifest for "kube-apiserver"
[control-plane] Creating static Pod manifest for "kube-controller-manager"
[control-plane] Creating static Pod manifest for "kube-scheduler"
[etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests"
[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take u
p to 4m0s[kubelet-check] Initial timeout of 40s passed.
[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp:
 lookup localhost on 8.8.8.8:53: no such host.[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp:
 lookup localhost on 8.8.8.8:53: no such host.[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp:
 lookup localhost on 8.8.8.8:53: no such host.[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp:
 lookup localhost on 8.8.8.8:53: no such host.[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp:
 lookup localhost on 8.8.8.8:53: no such host.
	Unfortunately, an error has occurred:
		timed out waiting for the condition

	This error is likely caused by:
		- The kubelet is not running
		- The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled)

	If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands:
		- 'systemctl status kubelet'
		- 'journalctl -xeu kubelet'

	Additionally, a control plane component may have crashed or exited when started by the container runtime.
	To troubleshoot, list all containers using your preferred container runtimes CLI.

	Here is one example how you may list all Kubernetes containers running in docker:
		- 'docker ps -a | grep kube | grep -v pause'
		Once you have found the failing container, you can inspect its logs with:
		- 'docker logs CONTAINERID'

error execution phase wait-control-plane: couldn't initialize a Kubernetes cluster
To see the stack trace of this error execute with --v=5 or higher

排查過程

1、根據輸出結果排查:

kubelet處于active狀態 正常;

根據輸出結果發現,為什么會去lookup localhost on 8.8.8.8:53呢?抱著不解 去ping 了一下localhost,結果是127.0.0.1 好像沒什么問題,就忽略了這個報錯……

根據報錯內容 手動排查,結果也是ok的。

[root@k01 ~]# curl -sSL http://localhost:10248/healthz
ok

2、查看messages日志

日志內容和輸出差不多,但能夠看出是網絡問題:

[root@k01 ~]# tail -f /var/log/messages
May 17 13:01:07 DouyuTest01 kubelet: I0517 13:01:07.003029   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:07 DouyuTest01 kubelet: E0517 13:01:07.799345   10865 kubelet.go:2218] "Container runtime network not ready" networkReady="NetworkReady
=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized"May 17 13:01:07 DouyuTest01 kubelet: I0517 13:01:07.983382   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:07 DouyuTest01 kubelet: I0517 13:01:07.983386   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:07 DouyuTest01 kubelet: I0517 13:01:07.983455   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:08 DouyuTest01 kubelet: I0517 13:01:08.003006   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:08 DouyuTest01 kubelet: I0517 13:01:08.983542   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:08 DouyuTest01 kubelet: I0517 13:01:08.983550   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:08 DouyuTest01 kubelet: I0517 13:01:08.983594   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:09 DouyuTest01 kubelet: I0517 13:01:09.003077   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:09 DouyuTest01 kubelet: I0517 13:01:09.983455   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:09 DouyuTest01 kubelet: I0517 13:01:09.983469   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:09 DouyuTest01 kubelet: I0517 13:01:09.983513   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:10 DouyuTest01 kubelet: I0517 13:01:10.003036   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:10 DouyuTest01 kubelet: E0517 13:01:10.025554   10865 event.go:273] Unable to write event: '&v1.Event{TypeMeta:v1.TypeMeta{Kind:"", API
Version:""}, ObjectMeta:v1.ObjectMeta{Name:"k01.167fc1eedabaafaa", GenerateName:"", Namespace:"default", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:v1.Time{Time:time.Time{wall:0x0, ext:0, loc:(*time.Location)(nil)}}, DeletionTimestamp:(*v1.Time)(nil), DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string(nil), Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ClusterName:"", ManagedFields:[]v1.ManagedFieldsEntry(nil)}, InvolvedObject:v1.ObjectReference{Kind:"Node", Namespace:"", Name:"k01", UID:"k01", APIVersion:"", ResourceVersion:"", FieldPath:""}, Reason:"Starting", Message:"Starting kubelet.", Source:v1.EventSource{Component:"kubelet", Host:"k01"}, FirstTimestamp:v1.Time{Time:time.Time{wall:0xc0209bf99d5e33aa, ext:6597724002, loc:(*time.Location)(0x74ad9e0)}}, LastTimestamp:v1.Time{Time:time.Time{wall:0xc0209bf99d5e33aa, ext:6597724002, loc:(*time.Location)(0x74ad9e0)}}, Count:1, Type:"Normal", EventTime:v1.MicroTime{Time:time.Time{wall:0x0, ext:0, loc:(*time.Location)(nil)}}, Series:(*v1.EventSeries)(nil), Action:"", Related:(*v1.ObjectReference)(nil), ReportingController:"", ReportingInstance:""}': 'Post "https://10.129.42.131:6443/api/v1/namespaces/default/events": dial tcp 10.129.42.131:6443: connect: connection refused'(may retry after sleeping)May 17 13:01:10 DouyuTest01 kubelet: E0517 13:01:10.107623   10865 controller.go:144] failed to ensure lease exists, will retry in 7s, error: Get "h
ttps://10.129.42.131:6443/apis/coordination.k8s.io/v1/namespaces/kube-node-lease/leases/k01?timeout=10s": dial tcp 10.129.42.131:6443: connect: connection refusedMay 17 13:01:10 DouyuTest01 kubelet: I0517 13:01:10.715642   10865 kubelet_node_status.go:71] "Attempting to register node" node="k01"
May 17 13:01:10 DouyuTest01 kubelet: E0517 13:01:10.716053   10865 kubelet_node_status.go:93] "Unable to register node with API server" err="Post \"
https://10.129.42.131:6443/api/v1/nodes\": dial tcp 10.129.42.131:6443: connect: connection refused" node="k01"May 17 13:01:10 DouyuTest01 kubelet: I0517 13:01:10.983585   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:10 DouyuTest01 kubelet: I0517 13:01:10.983675   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:10 DouyuTest01 kubelet: I0517 13:01:10.984259   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:11 DouyuTest01 kubelet: I0517 13:01:11.003219   10865 kubelet.go:461] "Kubelet nodes not sync"
May 17 13:01:11 DouyuTest01 kubelet: I0517 13:01:11.133807   10865 cni.go:239] "Unable to update cni config" err="no networks found in /etc/cni/net.

3、百度

百度也沒結果,死馬當活馬醫,修改了localhost的hosts映射關系:

[root@k01 ~]# cat /etc/hosts
10.129.42.131 k01 localhost
10.129.42.151 k02
10.129.42.152 k03
10.129.42.155 hub.atguigu.com

問題解決了,繼續初始化如下:

……
[control-plane] Creating static Pod manifest for "kube-controller-manager"
[control-plane] Creating static Pod manifest for "kube-scheduler"
[etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests"
[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take u
p to 4m0s[kubelet-check] Initial timeout of 40s passed.
[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp 
10.129.42.131:10248: connect: connection refused.[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp 
10.129.42.131:10248: connect: connection refused.[kubelet-check] It seems like the kubelet isn't running or healthy.
[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp 
10.129.42.131:10248: connect: connection refused.[apiclient] All control plane components are healthy after 65.003162 seconds
……

解決方案

添加了10.129.42.131 localhost一條hosts記錄;

[kubelet-check] The HTTP call equal to 'curl -sSL http://localhost:10248/healthz' failed with error: Get "http://localhost:10248/healthz": dial tcp:
 lookup localhost on 8.8.8.8:53: no such host.[kubelet-check] It seems like the kubelet isn't running or healthy.

感謝各位的閱讀!關于“kubeadm安裝報錯怎么辦”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

商南县| 来安县| 樟树市| 扶绥县| 阿图什市| 麦盖提县| 江口县| 晋中市| 汶川县| 汤原县| 金沙县| 农安县| 台江县| 庆城县| 峨眉山市| 任丘市| 汕头市| 道孚县| 南城县| 固始县| 灵川县| 巴塘县| 鲜城| 广宗县| 微博| 合水县| 揭西县| 揭阳市| 龙南县| 屏南县| 新竹市| 榕江县| 开原市| 定远县| 普宁市| 建阳市| 安多县| 黄龙县| 东乡县| 南木林县| 黄浦区|