logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

k8s.gcr.io被墙

在使用Kubeadm时,要在google的镜像仓库下载Image,但是因为网络原因无法下载 ,所以在安装时可以指定其它仓库地址来使用。--image-repository=v5cn。具体使用:kubeadm init --pod-network-cidr=10.244.0.0/16 --service-cidr=10.96.0.0/12 --ignore-preflight-errors="Num

#kubernetes
kubernetes删除过期的Image镜像

k8s集群中经常被旧版本已经不再使用的镜像占完磁盘空间,出现node has conditions: [DiskPressure]或者是failed to register layer: devmapper:Thin Pool has 107394 free data blocks which is less than minimum required 163840 free data block

#kubernetes
kubenetes安装metrics-server时提示 the server is currently unable to handle the request

今天在安装kubernetes metrics-server时,报错Error from server (ServiceUnavailable): the server is currently unable to handle the request (get nodes.metrics.k8s.io)执行如下[root@localhost ~]# kubectl top nodeEr...

#kubernetes
安装Prometheus-operator,对监控数据持久化存储

我们使用Helm安装prometheus-operator后,监控的数据默认是保存在Pod中的,那么当我们的Pod进行重启或者调度之后, 就会出现无法查看历史数据,所以我们需要对数据进行持久化保存首先创建一个NFS服务供我们的kubernetes集群使用。[root@localhost ~]# yum -y install nfs-utils[root@localhost ~]# cat...

#kubernetes
到底了