Runner SaaS (FREE SAAS)

If you use GitLab SaaS (GitLab.com), your untagged CI jobs automatically run in containers on the Linux Runners. As long as shared runners are enabled for your project, no configuration is required. Your jobs can run on:

The number of minutes you can use on these runners depends on the maximum number of CI/CD minutes in your subscription plan.

Security for GitLab SaaS runners

GitLab SaaS runners on Linux and Windows run on Google Compute Platform. The Google Infrastructure Security Design Overview whitepaper provides an overview of how Google designs security into its technical infrastructure. The GitLab Trust Center and GitLab Security Compliance Controls pages provide an overview of the security and compliance controls that govern the GitLab SaaS runners.

The runner that serves as a runner manager automatically initiates the creation and deletion of the virtual machines (VMs) used for CI jobs. When the runner manager picks up a GitLab SaaS CI job, it automatically executes that job on a new VM. There is no human or manual intervention in this process. The following section provides an overview of the additional built-in layers that harden the security of the GitLab Runner SaaS CI build environment.

Security of CI job execution on GitLab Runner SaaS (Linux, Windows)

A dedicated temporary runner VM hosts and runs each CI job. On GitLab SaaS, two CI jobs never run on the same VM.

Job isolation

In this example, there are three jobs in the project's pipeline. Therefore, there are three temporary VMs used to run that pipeline, or one VM per job.

GitLab sends the command to remove the temporary runner VM to the Google Compute API immediately after the CI job completes. The Google Compute Engine hypervisor takes over the task of securely deleting the virtual machine and associated data.

Network security of CI job virtual machines on GitLab Runner SaaS (Linux, Windows)

  • Firewall rules only allow outbound communication from the temporary VM to the public internet.
  • Inbound communication from the public internet to the temporary VM is not allowed.
  • Firewall rules do not permit communication between VMs.
  • The only internal communication allowed to the temporary VMs is from the runner manager.