Gitlab+jenkins持續整合+自動化部署(一)
Gitlab+jenkins持續整合+自動化部署(一)
攀巖人生關注1人評論69546人閱讀2018-07-11 11:37:56Gitlab介紹
GitLab是一個利用 Ruby on Rails 開發的開源應用程式,實現一個自託管的Git專案倉庫,可通過Web介面進行訪問公開的或者私人專案。
GitLab擁有與Github類似的功能,能夠瀏覽原始碼,管理缺陷和註釋。可以管理團隊對倉庫的訪問,它非常易於瀏覽提交過的版本並提供一個檔案歷史庫。它還提供一個程式碼片段收集功能可以輕鬆實現程式碼複用,便於日後有需要的時候進行查詢。
環境準備
Centos7.4--------x2
Gitlab:192.168.1.121 記憶體不能小於2G
jenkins:192.168.1.215
關閉selinux並確定是出於關閉狀態
sed -i ‘s/SELINUX=enforcing/SELINUX=disabled’ /etc/selinux/config`
或者是臨時關閉selinux
setenforce 0
更新軟體包+重啟伺服器
yum -y update && reboot
關閉防火牆
systemctl stop firewalld
一.安裝gitlab Ip地址:192.168.1.121
安裝依賴包
yum install curl policycoreutils openssh-server openssh-clients postfix -y
啟動postfix
systemctl start postfix
curl -sS https: //packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | bash
[root@node1 ~]# cat /etc/yum.repos.d/gitlab-ce.repo
[gitlab-ce]
name=gitlab-ce
baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
repo_gpgcheck=0
gpgcheck=0
enabled=1
gpgkey=https://packages.gitlab.com/gpg.key
[root@node1 ~] # yum makecache
[root@node1 ~]# yum install -y gitlab-ce
在安裝一個git客戶端
yum -y install git
配置並啟動gitlab-ce
[root@node1 ~]# gitlab-ctl reconfigure
##時間可能比較長,請你耐心等待即可!~~~
##關閉:gitlab-ctl stop
##啟動:gitlab-ctl start
##重啟:gitlab-ctl restart
可以使用gitlab-ctl管理檢視gitlab 例如檢視gitlab狀態:
確保80埠沒有被佔用,被佔用的話,建議修改gitlab埠或者使用docker容器搭建gitlab
訪問192.168.1.121 會提示讓設定一個密碼,設定的密碼自己記住就可以.至少8位數
進入登陸介面 輸入使用者名稱及密碼 使用者root 密碼為剛才設定的密碼
建立一個組
建立一個專案
在建立好的專案裡面,點選README順便輸入點文字
為了保證安全取消使用者能夠自己註冊 (在下面找到seve儲存)
現在登陸就能發現沒有註冊了
0建立ssh免祕鑰登陸 模擬使用gitlab這臺伺服器當做客戶端
ssh-keygen -t rsa -C “你的郵箱”回三次車,密碼為空
[root@node1 ~]# cat .ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTwULTk7SphWY4QPoAh1rkCcLPqNHWGrHSb9xmxpI5KkjYsxlNzxQL1OCB89rDAfF3hbOBVlSqX4Bw5PpLKxupEh7JW1uOfQY652ygqI7OF6nf6L3JZ354uYa1uqd4u5y1sag+U9gXCLndq2NLAY0EFTlWy8jeU5unNWcq/WYjf17u4CdwHpV4UnDAFNUYPzzZ2TdSto7g7Nt3IerQ7qesS0jlOT28yx0ihPLpYuM1Xc5uu7+FfHSvk0VrpWXDRQPcIqijpXJvch6N1kMpc4Vo/8aDaL2ATy7bjfvqZqEaO+n7f7r3WgnKh9ilGwi0cB4F7wY/jbYrmf/wGkXRsU6B *****@163.com
把公鑰貼上到gitlab使用者當中
修改gitlab的拉取地址
vim /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml
重啟gitlab-ce
[root@node1 ~]# gitlab-ctl restart
拉取gitlab test專案
[root@node1 ~]# mkdir /test
[root@node1 ~]# cd /test
[root@node1 test]# git clone [email protected]:root/test.git
Cloning into 'test'...
The authenticity of host '192.168.1.121 (192.168.1.121)' can't be established.
ECDSA key fingerprint is SHA256:3+2ICEmVWmSRY5m13Ds9w8uQ/unCGZM0l/AZR52LbQc.
ECDSA key fingerprint is MD5:9c:94:0e:45:ff:57:42:67:a7:94:aa:33:86:30:99:d1.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.121' (ECDSA) to the list of known hosts.
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (3/3), done.
建立一個index.html用來模擬開發寫程式碼並提交
[root@node1 test]# pwd
/test/test
[root@node1 test]# cat index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>測試</h1>
</body>
</html>
[root@node1 test]# git add * ##提交所有更改資訊(刪除 增加檔案)
[root@node1 test]# git config --global user.email "******@163.com" ##身份驗證
[root@node1 test]# git config --global user.name "root" ##身份驗證
[root@node1 test]# git commit -m "add index.html" ##
[master 1cdcea5] add index.html
1 file changed, 10 insertions(+)
create mode 100644 index.html
[root@node1 test]# git push origin master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 382 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To [email protected]:root/test.git
5b44e15..1cdcea5 master -> master
驗證檢視gitlab上是否有提交的index.html
Gitlab+jenkins持續整合+自動化部署(一)
攀巖人生關注1人評論69546人閱讀2018-07-11 11:37:56Gitlab介紹
GitLab是一個利用 Ruby on Rails 開發的開源應用程式,實現一個自託管的Git專案倉庫,可通過Web介面進行訪問公開的或者私人專案。
GitLab擁有與Github類似的功能,能夠瀏覽原始碼,管理缺陷和註釋。可以管理團隊對倉庫的訪問,它非常易於瀏覽提交過的版本並提供一個檔案歷史庫。它還提供一個程式碼片段收集功能可以輕鬆實現程式碼複用,便於日後有需要的時候進行查詢。
環境準備
Centos7.4--------x2
Gitlab:192.168.1.121 記憶體不能小於2G
jenkins:192.168.1.215
關閉selinux並確定是出於關閉狀態
sed -i ‘s/SELINUX=enforcing/SELINUX=disabled’ /etc/selinux/config`
或者是臨時關閉selinux
setenforce 0
更新軟體包+重啟伺服器
yum -y update && reboot
關閉防火牆
systemctl stop firewalld
一.安裝gitlab Ip地址:192.168.1.121
安裝依賴包
yum install curl policycoreutils openssh-server openssh-clients postfix -y
啟動postfix
systemctl start postfix
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | bash
[root@node1 ~]# cat /etc/yum.repos.d/gitlab-ce.repo
[gitlab-ce]
name=gitlab-ce
baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
repo_gpgcheck=0
gpgcheck=0
enabled=1
gpgkey=https://packages.gitlab.com/gpg.key
[root@node1 ~]# yum makecache
[root@node1 ~]# yum install -y gitlab-ce
在安裝一個git客戶端
yum -y install git
配置並啟動gitlab-ce
[root@node1 ~]# gitlab-ctl reconfigure
##時間可能比較長,請你耐心等待即可!~~~
##關閉:gitlab-ctl stop
##啟動:gitlab-ctl start
##重啟:gitlab-ctl restart
可以使用gitlab-ctl管理檢視gitlab 例如檢視gitlab狀態:
確保80埠沒有被佔用,被佔用的話,建議修改gitlab埠或者使用docker容器搭建gitlab
訪問192.168.1.121 會提示讓設定一個密碼,設定的密碼自己記住就可以.至少8位數
進入登陸介面 輸入使用者名稱及密碼 使用者root 密碼為剛才設定的密碼
建立一個組
建立一個專案
在建立好的專案裡面,點選README順便輸入點文字
為了保證安全取消使用者能夠自己註冊 (在下面找到seve儲存)
現在登陸就能發現沒有註冊了
0建立ssh免祕鑰登陸 模擬使用gitlab這臺伺服器當做客戶端
ssh-keygen -t rsa -C “你的郵箱”回三次車,密碼為空
[root@node1 ~]# cat .ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTwULTk7SphWY4QPoAh1rkCcLPqNHWGrHSb9xmxpI5KkjYsxlNzxQL1OCB89rDAfF3hbOBVlSqX4Bw5PpLKxupEh7JW1uOfQY652ygqI7OF6nf6L3JZ354uYa1uqd4u5y1sag+U9gXCLndq2NLAY0EFTlWy8jeU5unNWcq/WYjf17u4CdwHpV4UnDAFNUYPzzZ2TdSto7g7Nt3IerQ7qesS0jlOT28yx0ihPLpYuM1Xc5uu7+FfHSvk0VrpWXDRQPcIqijpXJvch6N1kMpc4Vo/8aDaL2ATy7bjfvqZqEaO+n7f7r3WgnKh9ilGwi0cB4F7wY/jbYrmf/wGkXRsU6B *****@163.com
把公鑰貼上到gitlab使用者當中
修改gitlab的拉取地址
vim /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml
重啟gitlab-ce
[root@node1 ~]# gitlab-ctl restart
拉取gitlab test專案
[root@node1 ~]# mkdir /test
[root@node1 ~]# cd /test
[root@node1 test]# git clone [email protected]:root/test.git
Cloning into 'test'...
The authenticity of host '192.168.1.121 (192.168.1.121)' can't be established.
ECDSA key fingerprint is SHA256:3+2ICEmVWmSRY5m13Ds9w8uQ/unCGZM0l/AZR52LbQc.
ECDSA key fingerprint is MD5:9c:94:0e:45:ff:57:42:67:a7:94:aa:33:86:30:99:d1.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.121' (ECDSA) to the list of known hosts.
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (3/3), done.
建立一個index.html用來模擬開發寫程式碼並提交
[root@node1 test]# pwd
/test/test
[root@node1 test]# cat index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h1>測試</h1>
</body>
</html>
[root@node1 test]# git add * ##提交所有更改資訊(刪除 增加檔案)
[root@node1 test]# git config --global user.email "******@163.com" ##身份驗證
[root@node1 test]# git config --global user.name "root" ##身份驗證
[root@node1 test]# git commit -m "add index.html" ##
[master 1cdcea5] add index.html
1 file changed, 10 insertions(+)
create mode 100644 index.html
[root@node1 test]# git push origin master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 382 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To [email protected]:root/test.git
5b44e15..1cdcea5 master -> master
驗證檢視gitlab上是否有提交的index.html