gitlab配置gitlib-runner

1.安装gitlab-runner

添加源

curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh | sudo bash

安装

yum install gitlab-runner -y

注册

gitlab-runner gitlab-runner registe

执行命令以后

[root@iZbp1fmnx8oyubksjdk7leZ gitbook]# gitlab-runner register
Running in system-mode.                            
                                                   
Please enter the gitlab-ci coordinator URL (e.g. https://gitlab.com/):
http://192.168.75.146:8080/             
Please enter the gitlab-ci token for this runner:
1Lxq_f1NRfCfeNbE5WRh
Please enter the gitlab-ci description for this runner:
[iZbp1fmnx8oyubksjdk7leZ]: deploy-gaming
Please enter the gitlab-ci tags for this runner (comma separated):
deploy
Registering runner... succeeded                     runner=P_zfkhTb
Please enter the executor: virtualbox, docker+machine, parallels, shell, ssh, docker-ssh+machine, kubernetes, docker, docker-ssh:
shell
Runner registered successfully. Feel free to start it, but if it's running already the config should be automatically reloaded! 

说明:

  • gitlab-ci-multi-runner register:执行注册命令
  • Please enter the gitlab-ci coordinator URL:输入 ci 地址
  • Please enter the gitlab-ci token for this runner:输入 ci token
  • Please enter the gitlab-ci description for this runner:输入 runner 名称
  • Please enter the gitlab-ci tags for this runner:设置 tag
  • Whether to run untagged builds:这里选择 true ,代码上传后会能够直接执行
  • Whether to lock Runner to current project:直接回车,不用输入任何口令
  • Please enter the executor:选择 runner 类型,这里我们选择的是 shell

CI 的地址和令牌,在 项目 --> 设置 --> CI/CD --> Runner 设置:


image.png

2.写配置文件

然后在项目下写 .gitlab-ci.yml 配置文件

stages:
  - install_deps
  - test
  - build
  - deploy_test
  - deploy_production

cache:
  key: ${CI_BUILD_REF_NAME}
  paths:
    - node_modules/
    - dist/

# 安装依赖
install_deps:
  stage: install_deps
  only:
    - develop
    - master
  script:
    - npm install

# 运行测试用例
test:
  stage: test
  only:
    - develop
    - master
  script:
    - npm run test

# 编译
build:
  stage: build
  only:
    - develop
    - master
  script:
    - npm run clean
    - npm run build:client
    - npm run build:server

# 部署测试服务器
deploy_test:
  stage: deploy_test
  only:
    - develop
  script:
    - pm2 delete app || true
    - pm2 start app.js --name app

# 部署生产服务器
deploy_production:
  stage: deploy_production
  only:
    - master
  script:
    - bash scripts/deploy/deploy.sh

执行docker 命令 -i (去掉t) 因为-t是指分配一个伪终端。这里不需要分配伪终端。

sudo docker exec -i mgnt rm -rf /code/mgnt/backend/*

上面的配置把一次 Pipeline 分成五个阶段:

  • 安装依赖(install_deps)
  • 运行测试(test)
  • 编译(build)
  • 部署测试服务器(deploy_test)
  • 部署生产服务器(deploy_production)

设置 Job.only 后,只有当 develop 分支和 master 分支有提交的时候才会触发相关的 Jobs。

节点说明:

  • stages:定义构建阶段,这里只有一个阶段 deploy
  • deploy:构建阶段 deploy 的详细配置也就是任务配置
  • script:需要执行的 shell 脚本
  • only:这里的 master 指在提交到 master 时执行
  • tags:与注册 runner 时的 tag 匹配

其它配置

为保证能够正常集成,我们还需要一些其它配置:

  • 安装完 GitLab Runner 后系统会增加一个 gitlab-runner 账户,我们将它加进 root 组:
gpasswd -a gitlab-runner root
  • 配置免密操作:
    打开 vi /etc/sudoers 文件 添加gitlab-runner 用户登录方式
gitlab-runner ALL=(ALL) NOPASSWD: ALL
  • 由于我们的 shell 脚本中有执行 git pull 的命令,我们直接设置以 ssh 方式拉取代码:
su gitlab-runner
ssh-keygen -t rsa -C "你在 GitLab 上的邮箱地址"
cd 
cd .ssh
cat id_rsa.pub
  • 复制 id_rsa.pub 中的秘钥到 GitLab:
image
  • 通过 ssh 的方式将代码拉取到本地

关于权限

用户组和用户的权限 把用户的root下的.ssh文件夹复制到 /home/gitlab-runner/ 下面 并修改里面文件用户和用户组

chown 用户 文件名称
chgrp  用户组  文件名称

测试集成效果

所有操作完成后 push 代码到服务器,查看是否成功:

image

passed 表示执行成功
failed 表示失败 可以点进去看失败的原因

其他命令

删除注册信息:

gitlab-runner unregister --name "名称"

查看注册列表:

gitlab-runner list

查看状态 启动和关闭

gitlab-runner status 
gitlab-runner start
gitlab-runner stop

你可能感兴趣的:(gitlab配置gitlib-runner)