How does gitlab-ci works internally with gitlab runner?

11/3/2019

I have some specific questions regarding gitlab-ci and runner:

  1. If my specific runner is configured in kubernetes cluster then how code mirroring happens into runner from Gitlab code repository

  2. How does the build happens in runner when it is configured within kubernetes cluster?

  3. When using any docker image in my .gitlab-ci.yml, how does those images are pulled by runner and how does commands mentioned within "script" tag are executed into those docker containers? Does runner creates pods within the kubernetes cluster (where runner is configured) with the image mentioned within .gitlab-ci.yml, and executes commands within those containers?

  4. Any additional explanations or references to learning material on how Gitlab runner works internally is highly appreciated.

-- Satwik Mukherjee
docker
gitlab-ci
gitlab-ci-runner
kubernetes

1 Answer

11/4/2019

I'm assuming when you say your GitLab Runner is configured in Kubernetes you mean you're using the Kubernetes executor. I marked the sections relevant to your questions.

(1) GitLab CI pulls the code from the repository (if public it's not an issue, but you can also use a private registry). Basically a helper image is used to clone the repository and download any artifacts into a container.

The Kubernetes executor lets you use an existing Kubernetes cluster to execute your pipeline/build step by calling the Kubernetes cluster API and creating a new Pod, with both build and services containers for each job. (3)

A more detailed view of the steps a Runner takes:

  • Prepare: Create the Pod against the Kubernetes Cluster. This creates the containers required for the build and services to run.
  • Pre-build: Clone, restore cache and download artifacts from previous stages. This is run on a special container as part of the Pod. (2)
  • Build: User build.
  • Post-build: Create cache, upload artifacts to GitLab. This also uses the special container as part of the Pod.

The GitLab repository for the runners might also be interesting for you.

-- char
Source: StackOverflow