【Gitlab ci】 Runner

一、gitlab-runner安装注册

1.docker下使用gitlab-runner

Run GitLab Runner in a container -- gitlab

1.1.安装docker

# 如果yum-config-manager不可用:yum -y install yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install -y docker-ce

1.2.安装gitlab-runner

docker run -d --name gitlab-runner --restart always \
  -v /srv/gitlab-runner/config:/etc/gitlab-runner \
  -v /var/run/docker.sock:/var/run/docker.sock \
  gitlab/gitlab-runner:latest

使用docker安装gitlab-runner,每次执行gitlab-runnber命令需要使用以下方式:

docker run --rm -t -i gitlab/gitlab-runner <command>

可以使用alias简化操作:

alias 'gitlab-runner-docker'='docker run --rm -t -i gitlab/gitlab-runner' 

1.3.注册runner

  • 执行注册命令
docker run --rm -t -i -v /srv/gitlab-runner/config:/etc/gitlab-runner gitlab/gitlab-runner register

Tip:不能使用docker run --rm -t -i gitlab/gitlab-runner register进行注册,这样会因为无法成功写入配置文件导致注册失败:
ERROR: Failed to load config stat /etc/gitlab-runner/config.toml: no such file or directory builds=0

  • 在项目的settings-CI/CD-RUNNER中找到token
    image
  • 填写注册相关信息
Please enter the gitlab-ci coordinator URL (e.g. https://gitlab.com )
https://gitlab.com

Please enter the gitlab-ci token for this runner
xxx

Please enter the gitlab-ci description for this runner
docker-runner

Please enter the gitlab-ci tags for this runner (comma separated):
docker

Please enter the executor: ssh, docker+machine, docker-ssh+machine, kubernetes, docker, parallels, virtualbox, docker-ssh, shell:
docker

Please enter the Docker image (eg. ruby:2.1):
alpine:latest

使用一条命令注册

docker run --rm -v /srv/gitlab-runner/config:/etc/gitlab-runner gitlab/gitlab-runner register \
  --non-interactive \
  --executor "docker" \
  --docker-image alpine:latest \
  --url "https://gitlab.com/" \
  --registration-token "PROJECT_REGISTRATION_TOKEN" \
  --description "docker-runner" \
  --tag-list "docker,aws" \
  --run-untagged="true" \
  --locked="false" \
  --access-level="not_protected"

查看注册信息

docker exec gitlab-runner  cat /etc/gitlab-runner/config.toml

2.在linux上使用gitlab-runner

Install GitLab Runner using the official GitLab repositories

2.1.安装

  • 添加gitlab的官方仓库
# For Debian/Ubuntu/Mint
curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash

# For RHEL/CentOS/Fedora
curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh | sudo bash
  • 下载安装
# For Debian/Ubuntu/Mint
sudo apt-get install gitlab-runner

# For RHEL/CentOS/Fedora
sudo yum install gitlab-runner


# 安装指定版本:
# for DEB based systems
apt-cache madison gitlab-runner
sudo apt-get install gitlab-runner=10.0.0

# for RPM based systems
yum list gitlab-runner --showduplicates | sort -r
sudo yum install gitlab-runner-10.0.0-1

2.2.注册runner

sudo gitlab-runner register
# 注册流程略(与前文使用docker安装的gitlab-runner注册方式一样)

查看注册信息

# 如果以root执行runner
cat /etc/gitlab-runner/config.toml 

# 如果以非root执行runner
cat ~/.gitlab-runner/config.toml

3.windows下使用gitlab-runner

Install GitLab Runner on Windows

3.1.下载安装

  1. 在C盘创建文件夹C:\GitLab-Runner
  2. 下载x86或者amd64版本gitlab-runner for windows,并重命名为gitlab-runner.exe
  3. 注册runner
  4. 安装gitlab-runner
gitlab-runner install
gitlab-runner start

# 使用指定的用户install
gitlab-runner install --user ENTER-YOUR-USERNAME --password ENTER-YOUR-PASSWORD

可能遇到的问题:Failed to start gitlab-runner: The system cannot find the path specified.
解决方法:新增一个特定的用户用于安装runner.

二、Runner Executors

在注册Runner的时候,可以设置Executors选择以何种方式去执行Jobs,每种执行方式都有各自的特点:

image

1.Shell

Shell is the simplest executor to configure. All required dependencies for your builds need to be installed manually on the same machine that the Runner is installed on.

目前Shell的方式支持以下三种:

  • Bash
  • Windows Powershell
  • Windows Batch

config.toml中可以指定使用具体的哪种shell执行:

...
[[runners]]
  name = "shell executor runner"
  executor = "shell"
  shell = "powershell"
...

可以使用gitlab- runner run command --user指定以某个user身份执行。如果是使用.deb或者.rmp的方式安装的runner,其会默认使用gitbal_ci_multi_runner用户去执行,如果不存在该用户,就会自动创建gitlab-runner用户去执行,可以把这个用户加到特定的组获得相应的权限。

使用shell executor,项目将会被拉到以下目录:

<working-directory>/builds/<short-token>/<concurrent-id>/<namespace>/<project-name>

# example:
/home/gitlab-runner/builds/VSB3RmGD/0/ww/ci_test

项目的caches被存储到

<working-directory>/cache/<namespace>/<project-name>
  • <working-directory>:runner当前执行的目录或者使用--working-directory指定的目录,默认是在/home/gitlab-runner/
  • <short-token>:runner的token前8位
  • <concurrent-id>:一个唯一的number,用于区别job,从0开始
  • <namespace>:项目拥有者的名称
  • <project-name>:项目名

2.Docker

A great option is to use Docker as it allows a clean build environment, with easy dependency management (all dependencies for building the project can be put in the Docker image). The Docker executor allows you to easily create a build environment with dependent services, like MySQL.

我们可以在.gitlab-ci.ymlconfig.toml中指定执行jobs所使用的imageservices。当触发Gitbal Ci时, Docker executor就会为创建相应的容器用于执行。首先先检查本地有没有需要的镜像,没有的话就会去docker
hub上去找。

# 在.gitlab-ci.yml中指定默认所有jobs都会使用的image和services
image: ruby:2.2
services:
  - postgres:9.3
before_script:
  - bundle install
  
# 在.gitlab-ci.yml的中某个job内定义
test:2.1:
  image: ruby:2.1
  services:
  - postgres:9.3
  script:
  - bundle exec rake spec

# 使用私有仓库的镜像
image: registry.xxx.com:5555/namepace/image:tag

# 在config.toml中定义
[runners.docker]
  image = "ruby:2.1"
  services = ["mysql:latest", "postgres:latest"]

使用Docker executor执行jobs分为四个步骤:

  1. Prepare: Create and start the services.
  2. Pre-job: Clone, restore cache and download artifacts from previous stages.
  3. Job: User build.
  4. Post-job: Create cache, upload artifacts to GitLab.
  • Docker executor会准备一个基于Apline Linux的镜像,其中包含了执行Prepare,Pre-jobPost-job步骤所需要的工具。
  • 执行Job使用的镜像是用户定义的。

gitlab支持以下三种组合方式:

  • Windows上使用docker-windowsWindows Container内执行(这种方法有一些限制)。
  • Linux上使用dockerLinux Containers内执行。
  • Windows上使用dockerLinux Containers内执行。

如果涉及到有很多I/O相关的操作,config.toml配置支持把目录挂载到RAM:

[runners.docker]
  # For the main container
  [runners.docker.tmpfs]
      "/var/lib/mysql" = "rw,noexec"

  # For services
  [runners.docker.services_tmpfs]
      "/var/lib/mysql" = "rw,noexec"

3.Kubernetes

The Kubernetes executor allows you to use an existing Kubernetes cluster for your builds. The executor will call the Kubernetes cluster API and create a new Pod (with a build container and services containers) for each GitLab CI job.

The Kubernetes executor
目前还没有用过,待补充

4.Others

4.1.Virtual Machine executor

gitlab支持VirtualBoxParallels,前提是需要创建好相应的虚拟机。

4.2.Docker Machine

类似通过Docker执行,不过创建container的时候是使用Docker Machine。

4.3.SSH

Runner需要通过SSH连接到一台外部的服务器去执行。gitlab不推荐使用这种方式执行。

4.4.Custom

gitlab支持使用自定义的执行方式。

5.各个executors支持特性对比

image

参考文章

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343