我正在尝试使用 minikube 构建微服务映像并将其部署到在我的开发机器上运行的单节点 Kubernetes 集群。我正在使用 Google 的云原生微服务演示应用程序 Online Boutique 来了解 Kubernetes、Istio 等技术的使用。
链接到 github 仓库: microservices-demo
在遵循安装过程并运行命令 skaffold run
来构建和部署我的应用程序时,我收到了一些错误:
Step 10/11 : RUN apt-get -qq update && apt-get install -y --no-install-recommends curl
---> Running in 43d61232617c
W: GPG error: http://deb.debian.org/debian buster InRelease: At least one invalid signature was encountered.
E: The repository 'http://deb.debian.org/debian buster InRelease' is not signed.
W: GPG error: http://deb.debian.org/debian buster-updates InRelease: At least one invalid signature was encountered.
E: The repository 'http://deb.debian.org/debian buster-updates InRelease' is not signed.
W: GPG error: http://security.debian.org/debian-security buster/updates InRelease: At least one invalid signature was encountered.
E: The repository 'http://security.debian.org/debian-security buster/updates InRelease' is not signed.
failed to build: couldn't build "loadgenerator": unable to stream build output: The command '/bin/sh -c apt-get -qq update && apt-get install -y --no-install-recommends curl' returned a non-zero code: 100
我在尝试构建负载生成器时收到这些错误。我该如何解决这个问题?
原文由 Saranya Gupta 发布,翻译遵循 CC BY-SA 4.0 许可协议
遇到这些错误的原因有几个:
现有缓存和/或磁盘空间可能存在问题。为了修复它,您需要通过执行以下命令清除 APT 缓存:
sudo apt-get clean
和sudo apt-get update
。现有的 docker 镜像也是如此。执行:
docker image prune -f
和docker container prune -f
以删除未使用的数据并释放磁盘空间。如果您不关心安全风险,可以尝试使用
--allow-unauthenticated
或--allow-insecure-repositories
标志运行apt-get
命令。根据 文档:请让我知道这是否有帮助。