I'm trying to make Gitlab-ci in autoscaling, but i'm having this error :
WARNING: Failed to update executor docker+machine for 0f8e3032 No free machines that can process builds
config.toml:
concurrent = 1
check_interval = 0
log_level = "debug"
[[runners]]
name = "First Runner"
url = "https://gitlab.test.com/"
token = "token"
executor = "docker+machine"
limit = 10
[runners.docker]
environment = ['GIT_SSL_NO_VERIFY=true']
image = "docker:latest"
privileged = false
[runners.machine]
IdleCount = 10
IdleTime = 900
MachineDriver = "generic"
MachineName = "auto-scale-%s"
MachineOptions = [
"generic-ip-address=localhost"
]
[runners.cache]
Shared = true
I think you seem to be missing a Machine Driver configuration. Gitlab Runner doesn't know where to spin up a new machine without that config.