0

嘿,我正在创建一个 Gitlab 管道,并且我在 Kubernetes 中有一个运行器。在我的管道中,我正在尝试将应用程序构建为容器。

我正在使用 构建容器buildah,该容器在 Kubernetes pod 中运行。管道运行时kubectl get pods --all-namespaces显示 buildah pod:

NAMESPACE        NAME                                             READY   STATUS    RESTARTS   AGE
gitlab-runner    runner-wyplq6-h-project-6157-concurrent-0qc9ns   2/2     Running   0          7s

管道运行 buildah login -u gitlab-ci-token -p ${CI_BUILD_TOKEN} ${CI_REGISTRY}buildah bud -t ${CI_REGISTRY_IMAGE}/${CI_COMMIT_BRANCH}:${CI_COMMIT_SHA} . 使用 Dockerfile 使用FROM parity/parity:v2.5.13-stable. 然而,Buldah bud 失败了,并打印:

Login Succeeded!
STEP 1: FROM parity/parity:v2.5.13-stable
Getting image source signatures
Copying blob sha256:d1983a67e104e801fceb1850a375a71fe6b62636ba7a8403d9644f308a6a43f9
Copying blob sha256:3386e6af03b043219225367632569465e5ecd47391d1f99a6d265e51bd463a83
Copying blob sha256:49ac0bbe6c8eeb959337b336ceaa5c3bbbae81e316025f9b94ede453540f2377
Copying blob sha256:72d77d7d5e84353d77d8a8f97d250120afe3650b85010137961560bce3a327d5
Copying blob sha256:1a0f3a523f04f61db942018321ae122f90d8e3303e243b005e8de9817daf7028
Copying blob sha256:4aae9d2bd9a7a79a688ccf753f0fa9bed5ae66ab16041380e595a077e1772b25
Copying blob sha256:8326361ddc6b9703a60c5675d1e9cc4b05dbe17473f8562c51b78a1f6507d838
Copying blob sha256:92c90097dde63c8b1a68710dc31fb8b9256388ee291d487299221dae16070c4a
Copying config sha256:36be05aeb6426b5615e2d6b71c9590dbc4a4d03ae7bcfa53edefdaeef28d3f41
Writing manifest to image destination
Storing signatures
time="2022-02-08T10:40:15Z" level=error msg="Error while applying layer: ApplyLayer exit status 1 stdout:  stderr: permission denied" 
error creating build container: The following failures happened while trying to pull image specified by "parity/parity:v2.5.13-stable" based on search registries in /etc/containers/registries.conf:
* "localhost/parity/parity:v2.5.13-stable": Error initializing source docker://localhost/parity/parity:v2.5.13-stable: pinging docker registry returned: Get https://localhost/v2/: dial tcp [::1]:443: connect: connection refused
* "docker.io/parity/parity:v2.5.13-stable": Error committing the finished image: error adding layer with blob "sha256:3386e6af03b043219225367632569465e5ecd47391d1f99a6d265e51bd463a83": ApplyLayer exit status 1 stdout:  stderr: permission denied
...

我在考虑两个可能的原因:首先构建容器,然后将其存储在 kubernetes pod 中,然后再将其传输到容器注册表。由于 Pod 没有任何持久存储,因此写入失败,因此出现此错误。

第二个是容器被构建并推送到容器注册表,由于某些原因它没有权限并且失败。

哪一个?我该如何解决?如果是第一个原因,我是否需要为运行 pod 的 serviceaccount 添加持久卷权限?

4

0 回答 0