Add gitlab-runner role

certbot_on_virtu
Alexandre Iooss 2020-08-28 10:58:07 +02:00
parent 30658d9bed
commit c2aee6173c
2 changed files with 42 additions and 1 deletions

View File

@ -2,4 +2,6 @@
---
# Deploy Gitlab CI
- hosts: gitlab-ci.adm.crans.org
roles: ["docker"]
roles:
- docker
- gitlab-runner

View File

@ -0,0 +1,39 @@
---
- name: Install apt-transport-https
apt:
update_cache: true
name:
- apt-transport-https
- ca-certificates
- curl
- gnupg2
- software-properties-common
state: present
register: apt_result
retries: 3
until: apt_result is succeeded
# Add the key
- name: Configure Gitlab apt key
apt_key:
url: https://packages.gitlab.com/runner/gitlab-runner/gpgkey
id: F6403F6544A38863DAA0B6E03F01618A51312F3F
state: present
register: apt_key_result
retries: 3
until: apt_key_result is succeeded
# Add the repository into source list
- name: Configure Gitlab repository
apt_repository:
repo: deb https://packages.gitlab.com/runner/gitlab-runner/debian/ buster main
state: present
- name: Install gitlab-runner
apt:
update_cache: true
name: gitlab-runner
state: present
register: apt_result
retries: 3
until: apt_result is succeeded