-
4 年前
kubesphere 配置邮件报错问题
k8s docker
使用25端口 msg="Error on notify" err="*smtp.plainAuth failed: unencrypted connection" 使用465端口,开启ssl认证 smtp.*****.com:465 fail to send mail alert due to 'does not advertise the STARTTLS extension 使用58…
-
4 年前
docker仓库提示 http: server gave HTTP response to HTTPS client 的解决方法
docker
问题简介 在我们通过docker client进行访问我们的Harbor时,有可能会遇到的如下的报错: http: server gave HTTP response to HTTPS client 这是因为我们docker client使用的是https,而我们搭建的Harbor私库用的是http的,所有会有这样的报错,导致访问不了。 报错提示 Error response from daem…
-
4 年前
k8s POD无法解析外网域名的问题
k8s docker
k8s master机器环境 宿主机resolv.conf # cat /etc/resolv.conf nameserver 172.16.100.1 pod中的resolv.conf文件如下 $ cat /etc/resolv.conf # Generated by NetworkManager nameserver 10.96.0.10 # 此ip为coredns的IP…
-
4 年前
Kubernetes(K8s) kubeadm init 失败的解决方法
docker k8s
kubeadm reset 报错信息 [root@kube-master ~]# kubeadm reset [reset] WARNING: Changes made to this host by 'kubeadm init' or 'kubeadm join' will be reverted. [reset] Are you sure you want to proceed? [y/N]:…
-
4 年前
kubernetes 核心实践
docker k8s
资源创建方式 命令行 yaml NameSpace 名称空间用来隔离资源 kubectl create ns hello kubectl delete ns hello apiVersion: v1 kind: Namespace metadata: name: hello kubectl apply -f hello.yaml kubectl delete -f…