Gitlab + Gitlab CI をためす
Gitlab + Jenkins があまりグッとこなかったので,Gitlab + Gitlab CI をためしてみた.結論から言えば,Gitlab + Jenkins より良いと思う.
Docker 上に準備
やることは
- Gitlab コンテナを動かす
- Gitlab CI コンテナを動かす
- Gitlab Runner コンテナを動かす
OSX 環境でためしたので,
$ docker-machine ip default 192.168.99.100
文中の192.168.99.100 とポートは適宜読み替えてください.
1. Gitlab コンテナを動かす
$ curl https://raw.githubusercontent.com/sameersbn/docker-gitlab/master/docker-compose.yml > gitlab.yml
$ docker-compose -f gitlab.yml up
http://192.168.99.100:10080 にアクセスできるようになるので,
- root ログインして必要なユーザーをつくる
- 鍵を登録する
- 適当なプロジェクトをつくる
- System OAuth applications に,あとで必要になる “http://192.168.99.100:10081/user_sessions/callback” を登録しておく
- Application Id: b3c0249b80e96cc35c4952bd288d8ba27fdfdbb93cfac6939d1438ffbdb9aa63
- Secret: a791b4b8e7a6515b457cf94a5246b74c1a72377ada25c009413fe0932f152753
参考: https://hub.docker.com/r/sameersbn/gitlab/
2. Gitlab CI コンテナを動かす
$ curl https://raw.githubusercontent.com/sameersbn/docker-gitlab-ci/master/docker-compose.yml > gitlab-ci.yml
$ vi gitlab-ci.yml
適宜編集
-postgresql: +ci-postgresql: image: sameersbn/postgresql:9.4-3 environment: - DB_USER=gitlab_ci @@ -6,24 +6,24 @@ - DB_NAME=gitlab_ci_production volumes: - /srv/docker/gitlab-ci/postgresql:/var/lib/postgresql -redis: +ci-redis: image: sameersbn/redis:latest volumes: - /srv/docker/gitlab-ci/redis:/var/lib/redis ci: image: sameersbn/gitlab-ci:7.13.5 links: - - redis:redisio - - postgresql:postgresql + - ci-redis:redisio + - ci-postgresql:postgresql ports: - "10081:80" environment: - TZ=Asia/Kolkata - - GITLAB_URL=http://localhost:10080 - - GITLAB_APP_ID= - - GITLAB_APP_SECRET= - - GITLAB_CI_SECRETS_SESSION_KEY_BASE= - - GITLAB_CI_SECRETS_DB_KEY_BASE= + - GITLAB_URL=http://192.168.99.100:10080 + - GITLAB_APP_ID=b3c0249b80e96cc35c4952bd288d8ba27fdfdbb93cfac6939d1438ffbdb9aa63 # Application Id + - GITLAB_APP_SECRET= a791b4b8e7a6515b457cf94a5246b74c1a72377ada25c009413fe0932f152753 # Secret + - GITLAB_CI_SECRETS_SESSION_KEY_BASE=v5W2GBFZP9TxTd29tkxSmpdFm66BD8S9fTrVMrJkmGQ2KddgSqRdCL4t4Npk2vWh # pwgen -Bsv1 64 などで作成 + - GITLAB_CI_SECRETS_DB_KEY_BASE=94fzWmKLLfWKkWlklQ9C4GXN8svTmnS2wMC7Xm9pw6hwdpLXgCcDl3R9Txxv8nLR # pwgen -Bsv1 64 などで作成 - GITLAB_CI_HOST=localhost - GITLAB_CI_PORT=10081 - GITLAB_CI_EMAIL=ci@example.com
$ docker-compose -f gitlab-ci.yml up
http://192.168.99.100:10081 にアクセスできるようになるので,
- OAuth ログイン
- プロジェクト一覧が取れる → 必要なプロジェクトを “Add project to CI”
- Runners page でトークンを調べる
- 9967476047fe03df0f230dca181cf4
参考: https://hub.docker.com/r/sameersbn/gitlab-ci/
3. Gitlab Runner コンテナを動かす
$ docker run -d --name gitlab-runner --restart always \ -v /srv/gitlab-runner/config:/etc/gitlab-runner \ gitlab/gitlab-runner:latest docker exec -it gitlab-runner gitlab-runner register Please enter the gitlab-ci coordinator URL (e.g. http://gitlab-ci.org:3000/): http://192.168.99.100:10081/ Please enter the gitlab-ci token for this runner: 9967476047fe03df0f230dca181cf4 Please enter the gitlab-ci description for this runner: [8370d5d6805a]: INFO[0129] 99674760 Registering runner... succeeded Please enter the executor: docker-ssh, ssh, shell, parallels, docker: [shell]: INFO[0133] Runner registered successfully. Feel free to start it, but if it's running already the config should be automatically reloaded!
Runners page をリロードすると,Runner が登録されている.
Runner に必要なビルド環境をつくる.(たとえば) ruby をインストール.
$ docker exec -it gitlab-runner bash $ apt-get update $ apt-get install -y wget curl gcc libxml2-dev libxslt-dev libcurl4-openssl-dev libreadline6-dev libc6-dev libssl-dev make build-essential zlib1g-dev openssh-server git-core libyaml-dev postfix libpq-dev libicu-dev $ su gitlab-runner $ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile $ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile $ source ~/.bash_profile $ git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build $ rbenv install 2.2.3 $ rbenv global 2.2.3
参考: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/docs/install/docker.md
Gitlab CI ができること
- branch 作成時にCI を回す
- Merge Request 作成時にCI を回す
- Gitlab 上に結果表示
- Status Badge
- 結果をSlack / HipChat に通知
- Gitlab と連携
- OAuth
- プロジェクト取得
おおよそ十分な機能をもっている.Jenkins がJava なのに対し,go + ruby + rails.
Gitlab と一緒に使うならJenkins より直観的だし,プロジェクトごとにrunner を分けられて安心だなと思った.