kubernetes pod status ContainerCreating

如图:status状态为running则对外访问正常,如果为containercreating,则表示异常

解决方法:

先查看/etc/docker/certs.d/registry.access.redhat.com目录下

发现问题:软链接失效,没有这个文件,可能是没有安装,也可能是其他原因

执行:yum install *rhsm* -y

安装完成后执行:docker pull registry.access.redhat.com/rhel7/pod-infrastructure:latest

依然报错:

执行:wget http://mirror.centos.org/centos/7/os/x86_64/Packages/python-rhsm-certificates-1.19.10-1.el7_4.x86_64.rpm

执行:rpm2cpio python-rhsm-certificates-1.19.10-1.el7_4.x86_64.rpm | cpio -iv --to-stdout ./etc/rhsm/ca/redhat-uep.pem | tee /etc/rhsm/ca/redhat-uep.pem

此时,查看/etc/rhsm/ca/目录下是否含有redhat-uep.pem文件

有的话,再次查看/etc/docker/certs.d/registry.access.redhat.com目录

红色变为淡蓝色表示成功,问题解决

重新创建容器

你可能感兴趣的:(kubernetes pod status ContainerCreating)