安装 kubernetes 时未找到有效的 GPG
No Valid GPG found while installing kubernetes
添加 kubernetes 密钥时出错
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
gpg: no valid OpenPGP data found.
我尝试使用 wget
详细命令
wget --no-check-certificate -vO - https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
--2018-10-05 09:55:13-- https://packages.cloud.google.com/apt/doc/apt-key.gpg
Resolving packages.cloud.google.com (packages.cloud.google.com)... failed: Temporary failure in name resolution.
wget: unable to resolve host address ‘packages.cloud.google.com’
gpg: no valid OpenPGP data found.
如何在我的 Kubernetes 安装步骤中克服该错误?
首先检查您是否应该使用代理来访问外部 URL(然后您必须在 .wgetrc
中声明该代理)
但另请参阅使用 curl -4 -s...
(强制使用 IPV4 而不是可能的默认 IPV6)是否会更好,如“Ubuntu 16.04: curl, wget, ssh could not resolve host from dnsmasq with IPv6”中所述。
谢谢大家
不确定确切的问题是什么,但下面的解决方案帮助我解决了这个问题
cat /etc/resolv.conf # 由 resolvconf(8) 生成的 glibc resolver(3) 的动态 resolv.conf(5) 文件 # 不要手动编辑这个文件——你的更改将是覆盖
因为此文件缺少名称服务器。添加名称服务器解决了问题
添加 kubernetes 密钥时出错
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
gpg: no valid OpenPGP data found.
我尝试使用 wget
详细命令
wget --no-check-certificate -vO - https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
--2018-10-05 09:55:13-- https://packages.cloud.google.com/apt/doc/apt-key.gpg
Resolving packages.cloud.google.com (packages.cloud.google.com)... failed: Temporary failure in name resolution.
wget: unable to resolve host address ‘packages.cloud.google.com’
gpg: no valid OpenPGP data found.
如何在我的 Kubernetes 安装步骤中克服该错误?
首先检查您是否应该使用代理来访问外部 URL(然后您必须在 .wgetrc
中声明该代理)
但另请参阅使用 curl -4 -s...
(强制使用 IPV4 而不是可能的默认 IPV6)是否会更好,如“Ubuntu 16.04: curl, wget, ssh could not resolve host from dnsmasq with IPv6”中所述。
谢谢大家
不确定确切的问题是什么,但下面的解决方案帮助我解决了这个问题
cat /etc/resolv.conf # 由 resolvconf(8) 生成的 glibc resolver(3) 的动态 resolv.conf(5) 文件 # 不要手动编辑这个文件——你的更改将是覆盖
因为此文件缺少名称服务器。添加名称服务器解决了问题