The auto scale feature was introduced in GitLab Runner 1.1.0.
For an overview of the autoscale architecture, take a look at the comprehensive documentation on autoscaling.
In order to use the autoscale feature, Docker and GitLab Runner must be installed in the same machine:
- Log in to a new Linux-based machine that will serve as a bastion server where Docker will spawn new machines from
- Install GitLab Runner
- Install Docker Machine
- Optionally but recommended, prepare a proxy container registry and a cache server to be used with the autoscaled Runners
If you need to use any virtualization/cloud providers that aren't handled by Docker's Machine internal drivers, the appropriate driver plugin must be installed. The Docker Machine driver plugin installation and configuration is out of the scope of this documentation. For more details please read the Docker Machine documentation
-
Register a GitLab Runner and select the
docker+machineexecutor when asked. -
Edit
config.tomland configure the Runner to use Docker machine. Visit the dedicated page covering detailed information about GitLab Runner Autoscaling. -
The first time you're using Docker Machine, it's best to execute manually
docker-machine create ...with your chosen driver and all options from theMachineOptionssection. This will set up the Docker Machine environment properly and will also be a good validation of the specified options. After this, you can destroy the machine withdocker-machine rm [machine_name]and start the Runner.NOTE: Note: Multiple concurrent requests to
docker-machine createthat are done at first usage are not good. When thedocker+machineexecutor is used, the Runner may spin up few concurrentdocker-machine createcommands. If Docker Machine was not used before in this environment, each started process tries to prepare SSH keys and SSL certificates (for Docker API authentication between Runner and Docker Engine on the autoscaled spawned machine), and these concurrent processes are disturbing each other. This can end with a non-working environment. That's why it's important to create a test machine manually the very first time you set up the Runner with Docker Machine. -
Now, you can try and start a new pipeline in your project. In a few seconds, if you run
docker-machine lsyou should see a new machine being created.
-
Check if your operating system is configured to automatically restart the Runner (for example, by checking its service file):
-
if yes, ensure that service manager is configured to use
SIGQUITand use the service's tools to stop the process:# For systemd sudo systemctl stop gitlab-runner # For upstart sudo service gitlab-runner stop -
if no, you may stop the Runner's process manually:
sudo killall -SIGQUIT gitlab-runner
NOTE: Note: Sending the
SIGQUITsignal will make the Runner to stop gracefully. It will stop accepting new jobs, and will exit as soon as the current jobs are finished. -
-
Wait until the Runner exits. You can check its status with
gitlab-runner statusor await a graceful shutdown for up to 30 minutes with:for i in `seq 1 180`; do # 1800 seconds = 30 minutes gitlab-runner status || break sleep 10 done
-
You can now safely install the new Runner without interrupting any jobs