Git Product home page Git Product logo

ansible-gitlab-runner's Introduction

GitLab Runner Build Status Ansible Role

This role will install the official GitLab Runner (fork from DBLaci, which forked it from riemers, which in turn forked it from haroldb) with updates. Needed something simple and working, this did the trick for me. Open for changes though.

NOTE:

Even though it's a fork it is NOT backward compatible:

  • it will only install gitlab-runner (all "gitlab-multi-runner" references were scraped)
  • all per-runner global variables were removed
  • there is no "default runner"
  • there is a list of runner to be configured (1 machine can have more than 1 runner... be bold)

Requirements

This role requires Ansible 2.0 or higher.

Role Variables

gitlab_runner_concurrent The maximum number of jobs to run concurrently. Defaults to the number of processor cores.

gitlab_check_interval The interval of job poll in seconds Defaults to the upstream default (3 seconds)

gitlab_runner_list This list will hold the multiple runners. It is a list of dict based on the settings available in one runner. You must set different descriptions for the runners to work.

NOTE:

Runners are created for the first time. You can't change the settings of existsing ones with this role.

See the config for more options

Example Playbook

- hosts: runner_hosts
  become: yes
  roles:
    - eRadical.gitlab-runner

Example for requirements.yml

- name: eRadical.gitlab-runner
  src: https://github.com/eRadical/ansible-gitlab-runner
  scm: git
  version: commit_id_here

Inside group_vars/runner_hosts.yml

gitlab_runner_concurrent: 1
gitlab_check_interval: 3
gitlab_runner_list:
- coordinator_url: 'https://your.gitlab.installation/ci'
  registration_token: ''
  description: '{{ ansible_hostname }}__shell'
  output_limit: 102400	# 100MB - --output-limit flag is in Kb
  executor: 'shell'
  tags:
  - shell
  - bash
- coordinator_url: 'https://your.gitlab.installation/ci'
  registration_token: ''
  description: '{{ ansible_hostname }}__docker'
  output_limit: 102400	# 100MB - --output-limit flag is in Kb
  executor: 'docker'
  docker_image: "centos:latest"
  docker_tlsverify: "false"
  docker_pull_policy: "always"
  docker_privileged: "true"
  tags:
  - docker
  - container

ansible-gitlab-runner's People

Contributors

dblaci avatar eradical avatar haroldb avatar meip avatar mrtyler avatar nekottyo avatar riemers avatar rihardst avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.