Gitlab Omnibus 7.8.0 上gitlab-ci的配置
Configuration of gitlab-ci on Gitlab Omnibus 7.8.0
我已经在我的 Debian 7 上安装了 Gitlab Omnibus (gitlab_7.8.0-omnibus-1_amd64.deb
)。
我已经在上面启动了 gitlab-ci
。
现在我的 gitlab-ci 欢迎 页面上有以下消息。
You need only 2 steps to set it up.
In the GitLab admin area under OAuth applications create a new entry. The redirect url should be http://ci.xxx.xxx/user_sessions/callback
Update the GitLab CI config with the application id and the application secret from GitLab.
所以我在我的 gitlab 中创建了 ci 应用程序条目,并将这一行添加到我的 gitlab.rb:
gitlab_ci['gitlab_server'] = { 'url' => 'http://gitlab.xxx.xxx', 'app_id' => '3c...f4', 'app_secret' => '8a...af' }
我做了一个gitlab-ctl reconfigure
,没有出现错误。
但我的 gitlab 上仍然看到 welcome/configuration 页面-ci.
那么我缺少什么来完成我的 ci <-> gitlab link 配置?
谢谢布莱恩
所以我通过升级到 7.8.1 解决了这个问题(错误 HTTP 502 通过更改对独角兽日志的权限修复)
我已经在我的 Debian 7 上安装了 Gitlab Omnibus (gitlab_7.8.0-omnibus-1_amd64.deb
)。
我已经在上面启动了 gitlab-ci
。
现在我的 gitlab-ci 欢迎 页面上有以下消息。
You need only 2 steps to set it up.
In the GitLab admin area under OAuth applications create a new entry. The redirect url should be http://ci.xxx.xxx/user_sessions/callback
Update the GitLab CI config with the application id and the application secret from GitLab.
所以我在我的 gitlab 中创建了 ci 应用程序条目,并将这一行添加到我的 gitlab.rb:
gitlab_ci['gitlab_server'] = { 'url' => 'http://gitlab.xxx.xxx', 'app_id' => '3c...f4', 'app_secret' => '8a...af' }
我做了一个gitlab-ctl reconfigure
,没有出现错误。
但我的 gitlab 上仍然看到 welcome/configuration 页面-ci.
那么我缺少什么来完成我的 ci <-> gitlab link 配置?
谢谢布莱恩 所以我通过升级到 7.8.1 解决了这个问题(错误 HTTP 502 通过更改对独角兽日志的权限修复)