1

我正在尝试使用调用 Kaniko 的 Jenkins 共享库构建容器。Jenkins 是运行在 Kubernetes 集群上的 CloudBees 核心。

我更喜欢尝试使用 pod 模板来构建容器,但如果必须,我可以回退到专用 VM(但我的客户不会高兴)。

问题:从简单的Jenkinsfile管道运行 Kaniko 工作正常,但尝试从shared-library.

我的共享库的片段:

docker.image('kaniko').inside('-u root --privileged') {
       sh '''#!/busybox/sh
            /kaniko/executor --context `pwd` --destination docker.artifactory.company.com/docker-local/hello-kaniko:latest
            '''
    }

我得到的错误(剪断):

.
.
.
Building: default
[Pipeline] stage
[Pipeline] { (Build)
[Pipeline] sh
+ docker inspect -f . kaniko
/home/jenkins/workspace/cloud-services@tmp/durable-28d8debd/script.sh: line 1: docker: not found
[Pipeline] sh
+ docker pull kaniko
/home/jenkins/workspace/cloud-services@tmp/durable-dc065568/script.sh: line 1: docker: not found
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
ERROR: script returned exit code 127
Finished: FAILURE

有没有其他人能够让 Kaniko 在 Kubernetes 上的 Jenkins 共享库中运行?

4

1 回答 1

0

我在 kaniko 容器中遇到了类似的问题,我要做的就是将 PATH 添加到环境中:

    withEnv(['PATH+EXTRA=/busybox:/kaniko']) {
      sh '''#!/busybox/sh
      /kaniko/executor (....)
    }
于 2019-07-11T12:06:00.910 回答