Easiest way to do docker build command within Jenkinsfile running on Jenkins slave node?

前端 未结 1 1354
傲寒
傲寒 2021-01-02 18:53

Basic example of what I want my Jenkinsfile to do:

node {
   sh \'docker build -t foo/bar .\'
}

It seems like I need to install docker onto

1条回答
  •  一生所求
    2021-01-02 19:37

    My assumption is that you want to docker build inside the Jenkins slave (which is a Kubernetes pod, I assume created by the Kubernetes Jenkins Plugin)

    To set the stage, when Kubernetes creates pod that will act as a Jenkins slave, all commands that you execute inside the node will be executed inside that Kubernetes pod, inside one of the containers there (by default there will only be one container, but more on this later).

    So you are actually trying to run a Docker command inside a container based on gcr.io/cloud-solutions-images/jenkins-k8s-slave, which is most likely based on the official Jenkins JNLP Slave, which does not container Docker!

    From this point forward, there are two approaches that you can take:

    • use a slightly modified image based on the JNLP slave that also contains the Docker client and mount the Docker socket (/var/run/docker.sock) inside the container. (You can find details on this approach here). Here is an image that contains the Docker client and kubectl.

    Here is a complete view of how to configure the Jenkins Plugin:

    Note that you use a different image (you can create your own and add any binary you want there) and that you mount the Docker socket inside the container.

    • the problem with the first approach is that you create a new image forked from the official JNLP slave and manually add the Docker client. This means that whenever Jenkins or Docker have updates, you need to manually update your image and entire configuration, which is not that desirable. Using the second approach you always use official images, and you use the JNLP slave to start other containers in the same pod.

    Here is the full file from the image below

    Here is the Jenkins Plugin documentation for doing this

    As I said, the JNLP image will start a container that you specify in the same pod. Note that in order to use Docker from a container you still need to mount the Docker sock.

    These are the two ways I found to achieve building images inside a Jenkins JNLP slave running inside a container.

    The example also shows how to push the image using credential bindings from Jenkins, and how to update a Kubernetes deployment as part of the build process.

    Some more resources:

    • deploy Jenkins to Kubernetes as Helm chart, configure plugins to install

    Thanks, Radu M

    0 讨论(0)
提交回复
热议问题