Kubernetes 在哪里拉取镜像?如何浏览 them/change 他们的拉取源?
Where does Kubernetes pull images and how can I browse them/change their pull source?
像 this 这样的文件在哪里可以提取像 image: k8s.gcr.io/defaultbackend-amd64:1.5
这样的图像,我可以在哪里浏览它们?
ingres-nginx
的下一版本使用 1.15.6,修复了 CVE-2018-16843 和 CVE-2018-16844。我想看看是否有从 k8s.gcr.io/defaultbackend-amd64:1.5
中提取的源图像包含具有该 Nginx 版本的图像。
我无法从 docs 中找到答案。我不熟悉 Kubernetes 的默认存储库。我将如何配置 yaml 文件以从具有 URL 的特定注册表中提取?
k8s.gcr.io 是 Google 云 运行 上的注册服务 运行 即服务。要列出公开可用的图片或查找有关这些图片的详细信息,请查看 .
的答案之一
The link is https://console.cloud.google.com/gcr/images/google-containers/GLOBAL. I'm not sure why it's so difficult to find.
为了从特定存储库中提取图像,只需在您的清单中遵循以下语义:
image: <your-registry>/<your-project-path>/<your-container>:<your-tag>
例如:
image: www.myk8srepo.com/testing/nginx/defaultbackend-amd64:1.5.6
像 this 这样的文件在哪里可以提取像 image: k8s.gcr.io/defaultbackend-amd64:1.5
这样的图像,我可以在哪里浏览它们?
ingres-nginx
的下一版本使用 1.15.6,修复了 CVE-2018-16843 和 CVE-2018-16844。我想看看是否有从 k8s.gcr.io/defaultbackend-amd64:1.5
中提取的源图像包含具有该 Nginx 版本的图像。
我无法从 docs 中找到答案。我不熟悉 Kubernetes 的默认存储库。我将如何配置 yaml 文件以从具有 URL 的特定注册表中提取?
k8s.gcr.io 是 Google 云 运行 上的注册服务 运行 即服务。要列出公开可用的图片或查找有关这些图片的详细信息,请查看
The link is https://console.cloud.google.com/gcr/images/google-containers/GLOBAL. I'm not sure why it's so difficult to find.
为了从特定存储库中提取图像,只需在您的清单中遵循以下语义:
image: <your-registry>/<your-project-path>/<your-container>:<your-tag>
例如:
image: www.myk8srepo.com/testing/nginx/defaultbackend-amd64:1.5.6