ma gitlab-runner-shackspace: init

This commit is contained in:
makefu 2017-08-16 08:42:57 +02:00
parent 82fecfe30e
commit 34c654b714
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ config, ... }:
let
url = "https://git.shackspace.de/";
# generate token from CI-token via:
## gitlab-runner register
token = import <secrets/shackspace-gitlab-ci-token.nix> ;
in {
virtualisation.docker.enable = true;
services.gitlab-runner = {
enable = true;
gracefulTimeout = "120min";
# configFile = "/var/src/secrets/runner.toml";
configOptions = {
concurrent = 2;
runners = [{
name = "nix-krebs-1.11";
inherit token url;
executor = "docker";
builds_dir = "";
docker = {
host = "";
image = "nixos/nix:1.11";
privileged = false;
disable_cache = false;
volumes = ["/cache"];
shm_size = 0;
};
cache = {};
}];
};
};
}

View File

@ -0,0 +1 @@
"lol"