无法将 kubernetes-bionic main (Ubuntu 18.04) 添加到 apt 存储库

Unable to add kubernetes-bionic main (Ubuntu 18.04) to apt repository

我正在尝试在我的 Ubuntu server/desktop 版本 18.04.1 上安装 Kubernetes。 但是,当我想使用以下命令将 kubernetes 添加到 apt 存储库时:

sudo apt-add-repository "deb http://apt.kubernetes.io/ kubernetes-bionic main"

我收到以下错误:

Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease                                                                                               
Ign:3 http://dl.google.com/linux/chrome/deb stable InRelease                                                                                          
Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease                                                                                       
Hit:5 http://dl.google.com/linux/chrome/deb stable Release                                                                                            
Hit:6 http://archive.ubuntu.com/ubuntu bionic-backports InRelease                                                                                     
Hit:7 https://download.docker.com/linux/ubuntu bionic InRelease                                                                                       
Ign:8 https://packages.cloud.google.com/apt kubernetes-bionic InRelease                              
Err:10 https://packages.cloud.google.com/apt kubernetes-bionic Release
  404  Not Found [IP: 216.58.211.110 443]
Reading package lists... Done
E: The repository 'http://apt.kubernetes.io kubernetes-bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

如果我随后尝试安装 kubeadm,它不起作用,因为我没有将存储库添加到 apt

我希望有人能阐明我的问题..

所有这些都运行在 Hyper-V 上的 VM 中

PS:我不是顽固的 Linux 专家,但来自 Windows!

目前(2018 年 11 月)没有仿生文件夹。您可以在此处查看支持的发行版:

https://packages.cloud.google.com/apt/dists

最后一个 kubernetes 版本是:kubernetes-yakkety

这应该仍然适用于 bionic。

Bionic 文件夹仍未创建,但我通过添加存储库进行了测试 ' sudo apt-add-repository "deb http://apt.kubernetes.io/ kubernetes-xenial main" 和 sudo apt-add-repository "deb http://apt.kubernetes.io/ kubernetes-yakkety main"

我可以在 Ubuntu 18.04 上安装 Kubeadm、Kubectl 和 kubelet,代号为 *bionic**....

请确保按照建议和良好做法添加 GPG 密钥,否则这会产生通过正确的包名称推送恶意代码的漏洞...

curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add

您可以自己检查 dists 上有哪些存储库 - https://packages.cloud.google.com/apt/dists/

您还可以验证存储库是否已添加到 /etc/apt/source.list 或 /etc/apt/source.list.d,如果它在那里那么您应该没问题....