国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

Kubernetes K8s 解決 This error is likely caused by: - The kubelet is not running

這篇具有很好參考價值的文章主要介紹了Kubernetes K8s 解決 This error is likely caused by: - The kubelet is not running。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

1、查看日志

 journalctl -xeu kubelet | grep Failed

日志內(nèi)容

3月 18 20:21:04 k8s-master kubelet[36490]: E0318 20:21:04.954990 36490 server.go:302]
“Failed to run kubelet”
err=“failed to run Kubelet: misconfiguration: kubelet cgroup driver: “systemd” is
different from docker cgroup driver: “cgroupfs””

根據(jù)報錯信息發(fā)現(xiàn),是因為 k8s 和docker 的 cgroup driver 不一致導(dǎo)致的,k8s 的是systemd,而docker是cgroupfs,于是修改docker目錄下的的daemon.json文件

2、修改daemon.json文件

 vi /etc/docker/daemon.json

添加如下配置項,注意:如原本就有對象,就添加到原有對象,如沒有文件,則直接添加以下配置

{
	"exec-opts": ["native.cgroupdriver=systemd"]
}

3、重啟docker

 sudo systemctl restart docker

4、重置kubeadm

 kubeadm reset

5、重新執(zhí)行kubeadm init

 kubeadm init \
  --image-repository registry.aliyuncs.com/google_containers \
  --kubernetes-version=v1.23.5 \
  --pod-network-cidr=10.244.0.0/16  \
  --service-cidr=10.96.0.0/12  \
  --apiserver-advertise-address=192.168.0.2

6、初始化成功!

[root@k8s-master ~]# kubeadm init
–apiserver-advertise-address=192.168.124.199
–image-repository registry.aliyuncs.com/google_containers
–service-cidr=10.1.0.0/16
–pod-network-cidr=10.244.0.0/16
I1228 15:51:28.260967 1636 version.go:255] remote version is much newer: v1.26.0; falling back to: stable-1.23
[init] Using Kubernetes version: v1.23.15
[preflight] Running pre-flight checks
[WARNING Swap]: swap is enabled; production deployments should disable swap unless testing the NodeSwap feature gate of the kubelet
[preflight] Pulling images required for setting up a Kubernetes cluster
[preflight] This might take a minute or two, depending on the speed of your internet connection
[preflight] You can also perform this action in beforehand using ‘kubeadm config images pull’
[certs] Using certificateDir folder “/etc/kubernetes/pki”
[certs] Generating “ca” certificate and key
[certs] Generating “apiserver” certificate and key
[certs] apiserver serving cert is signed for DNS names [k8s-master kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local] and IPs [10.1.0.1 192.168.124.199]
[certs] Generating “apiserver-kubelet-client” certificate and key
[certs] Generating “front-proxy-ca” certificate and key
[certs] Generating “front-proxy-client” certificate and key
[certs] Generating “etcd/ca” certificate and key
[certs] Generating “etcd/server” certificate and key
[certs] etcd/server serving cert is signed for DNS names [k8s-master localhost] and IPs [192.168.124.199 127.0.0.1 ::1]
[certs] Generating “etcd/peer” certificate and key
[certs] etcd/peer serving cert is signed for DNS names [k8s-master localhost] and IPs [192.168.124.199 127.0.0.1 ::1]
[certs] Generating “etcd/healthcheck-client” certificate and key
[certs] Generating “apiserver-etcd-client” certificate and key
[certs] Generating “sa” key and public key
[kubeconfig] Using kubeconfig folder “/etc/kubernetes”
[kubeconfig] Writing “admin.conf” kubeconfig file
[kubeconfig] Writing “kubelet.conf” kubeconfig file
[kubeconfig] Writing “controller-manager.conf” kubeconfig file
[kubeconfig] Writing “scheduler.conf” kubeconfig file
[kubelet-start] Writing kubelet environment file with flags to file “/var/lib/kubelet/kubeadm-flags.env”
[kubelet-start] Writing kubelet configuration to file “/var/lib/kubelet/config.yaml”
[kubelet-start] Starting the kubelet
[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 up to 4m0s
[kubelet-check] Initial timeout of 40s passed.
[apiclient] All control plane components are healthy after 62.002667 seconds
[upload-config] Storing the configuration used in ConfigMap “kubeadm-config” in the “kube-system” Namespace
[kubelet] Creating a ConfigMap “kubelet-config-1.23” in namespace kube-system with the configuration for the kubelets in the cluster
NOTE: The “kubelet-config-1.23” naming of the kubelet ConfigMap is deprecated. Once the UnversionedKubeletConfigMap feature gate graduates to Beta the default name will become just “kubelet-config”. Kubeadm upgrade will handle this transition transparently.
[upload-certs] Skipping phase. Please see --upload-certs
[mark-control-plane] Marking the node k8s-master as control-plane by adding the labels: [node-role.kubernetes.io/master(deprecated) node-role.kubernetes.io/control-plane node.kubernetes.io/exclude-from-external-load-balancers]
[mark-control-plane] Marking the node k8s-master as control-plane by adding the taints [node-role.kubernetes.io/master:NoSchedule]
[bootstrap-token] Using token: vl7t25.ysiz5xy0xir8msj2
[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC Roles
[bootstrap-token] configured RBAC rules to allow Node Bootstrap tokens to get nodes
[bootstrap-token] configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials
[bootstrap-token] configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token
[bootstrap-token] configured RBAC rules to allow certificate rotation for all node client certificates in the cluster
[bootstrap-token] Creating the “cluster-info” ConfigMap in the “kube-public” namespace
[kubelet-finalize] Updating “/etc/kubernetes/kubelet.conf” to point to a rotatable kubelet client certificate and key
[addons] Applied essential addon: CoreDNS
[addons] Applied essential addon: kube-proxy
Your Kubernetes control-plane has initialized successfully!
To start using your cluster, you need to run the following as a regular user:
mkdir -p $HOME/.kube
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown ( i d ? u ) : (id -u): (id?u):(id -g) $HOME/.kube/config
Alternatively, if you are the root user, you can run:
export KUBECONFIG=/etc/kubernetes/admin.conf
You should now deploy a pod network to the cluster.
Run “kubectl apply -f [podnetwork].yaml” with one of the options listed at:
https://kubernetes.io/docs/concepts/cluster-administration/addons/
Then you can join any number of worker nodes by running the following on each as root:
kubeadm join 192.168.124.199:6443 --token vl7t25.ysiz5xy0xir8msj2
–discovery-token-ca-cert-hash sha256:3879c8cdaf4ba71da685f5cb0cd27419d8bb3a17e3f8d034180dbc1fbd22ec8c
[root@k8s-master ~]#文章來源地址http://www.zghlxwxcb.cn/news/detail-416360.html

到了這里,關(guān)于Kubernetes K8s 解決 This error is likely caused by: - The kubelet is not running的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費用

相關(guān)文章

  • 記Kubernetes(k8s)初始化報錯:“Error getting node“ err=“node \“k8s-master\“ not found“

    記Kubernetes(k8s)初始化報錯:“Error getting node“ err=“node \“k8s-master\“ not found“

    ??The Begin??點點關(guān)注,收藏不迷路?? \\\"Error getting node\\\" err=\\\"node \\\"k8s-master\\\" not found\\\" 查看日志報錯: [root@k8s-master ~]# journalctl -u kubelet 1、操作系統(tǒng)centos7.9 2、docker 版本檢查 3、kubelet 版本檢查 查找資料: Kubernetes在v1.24版本之后正式放棄了對Docker的支持。這意味著Kubernetes的官方

    2024年04月14日
    瀏覽(26)
  • 已解決: Error: ErrImagePull (K8s) 問題

    已解決: Error: ErrImagePull (K8s) 問題

    ???? 博主貓頭虎(????)帶您 Go to New World??? ?? 博客首頁 : ????貓頭虎的博客?? 《面試題大全專欄》 ?? 文章圖文并茂??生動形象??簡單易學(xué)!歡迎大家來踩踩~?? 《IDEA開發(fā)秘籍專欄》 ?? 學(xué)會IDEA常用操作,工作效率翻倍~?? 《100天精通Golang(基礎(chǔ)入門篇)》 ??

    2024年02月21日
    瀏覽(17)
  • k8s非root用戶報錯:error loading config file “/etc/kubernetes/admin.conf“: open /etc/kubernetes/admin.conf

    chatgpt回答的…… 這個錯誤是由于當(dāng)前非root用戶沒有足夠的權(quán)限來讀取 \\\"/etc/kubernetes/admin.conf\\\" 配置文件導(dǎo)致的。在 Kubernetes 中,\\\"/etc/kubernetes/admin.conf\\\" 是用于管理員訪問 Kubernetes 集群的配置文件,因此通常需要 root 用戶或有足夠權(quán)限的用戶才能訪問。 解決這個問題的方法有以

    2024年02月13日
    瀏覽(21)
  • 記Kubernetes(k8s) 集群報錯:FATA[0000] listing images: rpc error: code = Unavailable desc = connection err

    記Kubernetes(k8s) 集群報錯:FATA[0000] listing images: rpc error: code = Unavailable desc = connection err

    ??The Begin??點點關(guān)注,收藏不迷路?? 》報錯詳解: 根據(jù)輸出信息,看起來 crictl 工具在嘗試列出容器鏡像時遇到了連接問題。錯誤信息顯示 crictl 默認嘗試使用多個端點進行連接,但由于默認設(shè)置已被棄用,建議您手動設(shè)置端點。 crictl 嘗試使用 /var/run/dockershim.sock 等端點進

    2024年04月16日
    瀏覽(16)
  • 【k8s】Error from server (ServiceUnavailable): the server is currently unable to handle the request

    【k8s】Error from server (ServiceUnavailable): the server is currently unable to handle the request

    安裝metrics-server后,pod啟動時成功的就是一直報這個錯。網(wǎng)上找了很多放法,不管用,可以試試。 ?解決方法:新增 hostNetwork: true 到metries-server.yaml: 參考地址:kubernetes - Error from server (ServiceUnavailable): the server is currently unable to handle the request (get nodes.metrics.k8s.io) - Stack Overflow

    2024年02月11日
    瀏覽(27)
  • 【Azure K8S】AKS升級 Kubernetes version 失敗問題的分析與解決

    【Azure K8S】AKS升級 Kubernetes version 失敗問題的分析與解決

    創(chuàng)建Azure Kubernetes Service服務(wù)后,需要升級AKS集群的 kubernetes version。在AKS頁面的 Cluster configuration?頁面中,選擇新的版本 1.25.5,確認升級。等待50分鐘左右,卻等到了升級失敗的消息: Failed to save Kubernetes service \\\'xxxx-aks3\\\'. Error: Drain of aks-agentpool-xxxxxxxx-vmss00000j did not complete: Too

    2024年02月08日
    瀏覽(33)
  • pip安裝庫時報錯:This error originates from a subprocess, and is likely not a problem with pip.

    pip安裝庫時報錯:This error originates from a subprocess, and is likely not a problem with pip.

    前言 一 二、使用步驟 1.引入庫 2.讀入數(shù)據(jù) 總結(jié) ? 安裝庫時出現(xiàn)以下報錯 查看要安裝的庫的版本: 我的python版本3.10所以安了mayavi的最高的版本 ?successful

    2024年02月11日
    瀏覽(20)
  • 記Kubernetes(k8s) 節(jié)點kubeadm join報錯:[ERROR FileContent--proc-sys-net-ipv4-ip_forward]

    記Kubernetes(k8s) 節(jié)點kubeadm join報錯:[ERROR FileContent--proc-sys-net-ipv4-ip_forward]

    ??The Begin??點點關(guān)注,收藏不迷路?? 這個錯誤提示顯示了一個預(yù)檢錯誤,指出 /proc/sys/net/ipv4/ip_forward 的內(nèi)容未設(shè)置為 1。在 Kubernetes 的預(yù)安裝檢查中,這是一個必要的設(shè)置,它允許數(shù)據(jù)包在節(jié)點之間進行轉(zhuǎn)發(fā)。 要解決這個問題,需要設(shè)置 /proc/sys/net/ipv4/ip_forward 的值為 1。

    2024年04月14日
    瀏覽(23)
  • Kubernetes(k8s)實戰(zhàn):Kubernetes(k8s)部署Springboot項目

    Kubernetes(k8s)實戰(zhàn):Kubernetes(k8s)部署Springboot項目

    wordpress是用于快速搭建博客系統(tǒng)。 該yaml文件創(chuàng)建一個mysql,并且生成一個service,service對外暴露的端口是3306 我們發(fā)現(xiàn),搭建成功了,用瀏覽器訪問192.168.56.101:30493,發(fā)現(xiàn)訪問成功了! 在集群中,pod之間可以通過service 的name進行訪問,不僅僅是ip,這就意味著,service中不僅幫

    2024年02月12日
    瀏覽(33)
  • Kubernetes(K8S)學(xué)習(xí)(三):K8S實戰(zhàn)案例

    Kubernetes(K8S)學(xué)習(xí)(三):K8S實戰(zhàn)案例

    附:查看命名空間命令 kubectl get namespace kubectl get ns 創(chuàng)建wordpress-db.yaml文件,這里以mysql作為wordpress的db: yaml內(nèi)容: 根據(jù)wordpress-db.yaml配置,創(chuàng)建資源mysql數(shù)據(jù)庫: yaml中MySQL配置說明: 用戶:root ??????密碼:rootPassW0rd 數(shù)據(jù)庫名稱:wordpress 用戶:wordpress ??????密碼:wo

    2024年04月09日
    瀏覽(30)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包