快速部署 GitLab + Jenkins + Harbor 工具链

1、概述

本文将介绍如何通过 DevStream 在本地快速部署 GitLab + Jenkins + Harbor 工具链。

提示

本文基于 kubeadm 部署的单节点 k8s 环境,不适用于 minikube 和 kind 等 docker-in-docker 类型的 k8s 集群。

2、安装 dtm

你可以参考这个文档完成 dtm 的下载与安装。

3、准备配置文件

DevStream 可以简单地以 local 作为状态 Backend,也就是将状态保存到本地文件。如果你在本地测试,可以选择使用这种方式; 而企业 On premise 环境部署可能需要使用 k8s Backend 将状态通过 kube-apiserver 存入 etcd,两种方式配置分别如下:

DevStream with ‘local’ BackendDevStream with ‘k8s’ Backend

local Backend

  1. config:
  2. state:
  3. backend: local
  4. options:
  5. stateFile: devstream.state

k8s Backend

  1. config:
  2. state:
  3. backend: k8s
  4. options:
  5. namespace: devstream
  6. configmap: state

下文将以 local Backend 为例演示。

在编写 gitlab-ce-dockerhelm-installer(用于安装 Jenkins 和 Harbor)这两个插件的配置文件之前,你需要先定义一些变量,这会让后续的配置和维护工作变得更加简单:

config-tools.yaml

  1. config:
  2. state:
  3. backend: local
  4. options:
  5. stateFile: devstream.state
  6. vars:
  7. gitlabHostname: gitlab.example.com
  8. jenkinsHostname: jenkins.example.com
  9. harborHostname: harbor.example.com
  10. harborURL: http://harbor.example.com
  11. jenkinsAdminUser: admin
  12. jenkinsAdminPassword: changeme
  13. gitlabSSHPort: 30022
  14. gitlabHttpPort: 30080
  15. gitlabHttpsPort: 30443

你可以根据自己的需要,选择性自定义上述 vars 配置的值,这些变量内容主要是域名、端口号等可修改配置项。

继续往里面追加工具链相关插件的配置,你的配置文件会扩充成这样:

config-tools.yaml

  1. config:
  2. state:
  3. backend: local
  4. options:
  5. stateFile: devstream.state
  6. vars:
  7. gitlabHostname: gitlab.example.com
  8. jenkinsHostname: jenkins.example.com
  9. harborHostname: harbor.example.com
  10. harborURL: http://harbor.example.com
  11. jenkinsAdminUser: admin
  12. jenkinsAdminPassword: changeme
  13. gitlabSSHPort: 30022
  14. gitlabHttpPort: 30080
  15. gitlabHttpsPort: 30443
  16. tools:
  17. - name: gitlab-ce-docker
  18. instanceID: default
  19. dependsOn: []
  20. options:
  21. hostname: [[ gitlabHostname ]]
  22. gitlabHome: /srv/gitlab
  23. sshPort: [[ gitlabSSHPort ]]
  24. httpPort: [[ gitlabHttpPort ]]
  25. httpsPort: [[ gitlabHttpsPort ]]
  26. rmDataAfterDelete: false
  27. imageTag: "rc"
  28. - name: helm-installer
  29. instanceID: jenkins-001
  30. dependsOn: []
  31. options:
  32. valuesYaml: |
  33. serviceAccount:
  34. create: true
  35. name: jenkins
  36. controller:
  37. adminUser: [[ jenkinsAdminUser ]]
  38. adminPassword: [[ jenkinsAdminPassword ]]
  39. ingress:
  40. enabled: true
  41. hostName: [[ jenkinsHostname ]]
  42. enableRawHtmlMarkupFormatter: true
  43. JCasC:
  44. defaultConfig: true
  45. - name: helm-installer
  46. instanceID: harbor-001
  47. dependsOn: []
  48. options:
  49. valuesYaml: |
  50. externalURL: [[ harborURL ]]
  51. expose:
  52. type: ingress
  53. tls:
  54. enabled: false
  55. ingress:
  56. hosts:
  57. core: [[ harborHostname ]]
  58. chartmuseum:
  59. enabled: false
  60. notary:
  61. enabled: false
  62. trivy:
  63. enabled: false
  64. persistence:
  65. persistentVolumeClaim:
  66. registry:
  67. storageClass: ""
  68. accessMode: ReadWriteOnce
  69. size: 5Gi
  70. jobservice:
  71. storageClass: ""
  72. accessMode: ReadWriteOnce
  73. size: 1Gi
  74. database:
  75. storageClass: ""
  76. accessMode: ReadWriteOnce
  77. size: 1Gi
  78. redis:
  79. storageClass: ""
  80. accessMode: ReadWriteOnce
  81. size: 1Gi

4、初始化

你可以将上面这个配置文件(config-tools.yaml)放到服务器上任意一个合适的目录,比如 ~/devstream-test/,然后在该目录下执行:

初始化命令

  1. dtm init -f config-tools.yaml

这个命令会帮助你下载所有需要的 DevStream 插件。

5、开始部署

接着你就可以执行 apply 命令了:

开始部署

  1. dtm apply -f config-tools.yaml -y

这个命令执行成功的话,你可以大致看到如下日志:

部署日志

  1. 2022-11-30 08:14:05 [INFO] Apply started.
  2. 2022-11-30 08:14:06 [INFO] Using local backend. State file: devstream.state.
  3. 2022-11-30 08:14:06 [INFO] Tool (gitlab-ce-docker/default) found in config but doesn't exist in the state, will be created.
  4. 2022-11-30 08:14:06 ℹ [INFO] Tool (helm-installer/jenkins-001) found in config but doesn't exist in the state, will be created.
  5. 2022-11-30 08:14:06 [INFO] Tool (helm-installer/harbor-001) found in config but doesn't exist in the state, will be created.
  6. 2022-11-30 08:14:06 ℹ [INFO] Start executing the plan.
  7. 2022-11-30 08:14:06 ℹ [INFO] Changes count: 3.
  8. 2022-11-30 08:14:06 ℹ [INFO] -------------------- [ Processing progress: 1/3. ] --------------------
  9. 2022-11-30 08:14:06 ℹ [INFO] Processing: (gitlab-ce-docker/default) -> Create ...
  10. 2022-11-30 08:14:06 ℹ [INFO] Cmd: docker image ls gitlab/gitlab-ce:rc -q.
  11. 2022-11-30 08:14:06 ℹ [INFO] Running container as the name <gitlab>
  12. 2022-11-30 08:14:06 ℹ [INFO] Cmd: docker run --detach --hostname gitlab.example.com --publish 30022:22 --publish 30080:80 --publish 30443:443 --name gitlab --restart always --volume /srv/gitlab/config:/etc/gitlab --volume /srv/gitlab/data:/var/opt/gitlab --volume /srv/gitlab/logs:/var/log/gitlab gitlab/gitlab-ce:rc.
  13. Stdout: 34cdd2a834a1c21be192064eacf1e29536ff45c52562956b97d6d376a5dae11b
  14. 2022-11-30 08:14:07 ℹ [INFO] Cmd: docker inspect --format='{{json .Mounts}}' gitlab.
  15. 2022-11-30 08:14:07 ℹ [INFO] GitLab access URL: http://gitlab.example.com:30080
  16. 2022-11-30 08:14:07 ℹ [INFO] GitLab initial root password: execute the command -> docker exec -it gitlab grep 'Password:' /etc/gitlab/initial_root_password
  17. 2022-11-30 08:14:07 ✔ [SUCCESS] Tool (gitlab-ce-docker/default) Create done.
  18. 2022-11-30 08:14:07 ℹ [INFO] -------------------- [ Processing progress: 2/3. ] --------------------
  19. 2022-11-30 08:14:07 ℹ [INFO] Processing: (helm-installer/jenkins-001) -> Create ...
  20. 2022-11-30 08:14:07 ℹ [INFO] Filling default config with instance: jenkins-001.
  21. 2022-11-30 08:14:07 ℹ [INFO] Creating or updating helm chart ...
  22. 2022/11/30 08:14:09 creating 13 resource(s)
  23. 2022/11/30 08:14:09 beginning wait for 13 resources with timeout of 10m0s
  24. 2022/11/30 08:14:09 StatefulSet is not ready: jenkins/jenkins. 0 out of 1 expected pods are ready
  25. ...
  26. 2022/11/30 08:14:49 StatefulSet is not ready: jenkins/jenkins. 0 out of 1 expected pods are ready
  27. 2022/11/30 08:14:51 release installed successfully: jenkins/jenkins-4.2.15
  28. 2022-11-30 08:14:51 ✔ [SUCCESS] Tool (helm-installer/jenkins-001) Create done.
  29. 2022-11-30 08:14:51 ℹ [INFO] -------------------- [ Processing progress: 3/3. ] --------------------
  30. 2022-11-30 08:14:51 ℹ [INFO] Processing: (helm-installer/harbor-001) -> Create ...
  31. 2022-11-30 08:14:51 ℹ [INFO] Filling default config with instance: harbor-001.
  32. 2022-11-30 08:14:51 ℹ [INFO] Creating or updating helm chart ...
  33. 2022/11/30 08:14:52 checking 28 resources for changes
  34. 2022/11/30 08:14:52 Created a new Secret called "harbor-core" in harbor
  35. ...
  36. 2022/11/30 08:14:52 Created a new Ingress called "harbor-ingress" in harbor
  37. 2022/11/30 08:14:52 beginning wait for 28 resources with timeout of 10m0s
  38. 2022/11/30 08:14:52 Deployment is not ready: harbor/harbor-core. 0 out of 1 expected pods are ready
  39. ...
  40. 2022/11/30 08:15:50 Deployment is not ready: harbor/harbor-jobservice. 0 out of 1 expected pods are ready
  41. 2022/11/30 08:15:52 release installed successfully: harbor/harbor-1.10.2
  42. 2022-11-30 08:15:52 ✔ [SUCCESS] Tool (helm-installer/harbor-001) Create done.
  43. 2022-11-30 08:15:52 ℹ [INFO] -------------------- [ Processing done. ] --------------------
  44. 2022-11-30 08:15:52 ✔ [SUCCESS] All plugins applied successfully.
  45. 2022-11-30 08:15:52 ✔ [SUCCESS] Apply finished.

从日志里你可以看到,这时候 GitLab、Jenkins 和 Harbor 就已经部署完成了。

6、验证部署结果

你可以通过如下方式验证 GitLab + Jenkins + Harbor 三个工具的部署结果。

6.1、DNS 配置

前面你给 GitLab + Jenkins + Harbor 三个工具的配置文件里都设置了域名,然后你可以直接将这些域名与 IP 的映射关系配置到 DNS 服务器里。

如果没有 DNS 服务器,你也可以直接将域名与 IP 的映射关系配置到 /etc/hosts 以及 CoreDNS 的 ConfigMap kube-system/coredns 里让域名生效。比如我的主机 IP 是 44.33.22.11,这时候可以这样配置:

  1. 修改 /etc/hosts 文件,添加这条记录:

    dns record

    1. 44.33.22.11 gitlab.example.com jenkins.example.com harbor.example.com
  2. 修改 CoreDNS 的配置,在 ConfigMap kube-system/coredns 中添加静态解析记录,执行命令:kubectl edit cm coredns -n kube-system,在 hosts(第20行左右) 部分添加:

    dns record

    1. 44.33.22.11 gitlab.example.com jenkins.example.com harbor.example.com

    这时候在当前主机上,就可以分别通过如下地址访问到 GitLab、Jenkins 和 Harbor 了,同时 Jenkins 也能顺利地通过域名访问到 GitLab 和 Harbor:

最后由于当前刚才 DevStream 使用了 Docker 的方式直接运行的 GitLab,所以不管是主机的 /etc/hosts 还是 CoreDNS 的配置都无法让 GitLab 解析到 Jenkins 的域名,因此你还需要在 GitLab 容器内加一行配置:

Bash

  1. docker exec -it gitlab bash
  2. echo "44.33.22.11 jenkins.example.com" >> /etc/hosts
  3. exit

6.2、访问 GitLab

你可以在自己的 PC 里配置 44.33.22.11 gitlab.example.com 静态域名解析记录,然后在浏览器里通过 http://gitlab.example.com:30080 访问到 GitLab:

GitLab login

GitLab login page

通过执行如下命令,你可以设置 GitLab 的 root 密码:

get GitLab root Password

  1. docker exec -it gitlab bash # 进入容器
  2. gitlab-rake "gitlab:password:reset" # 执行后按照提示输入用户名 root,回车后输入密码

拿到 root 密码后,你可以尝试用 root/YOUR_PASSWORD 来登录 GitLab。

6.3、访问 Jenkins

前面你可能已经通过 curl http://jenkins.example.com 在主机内验证了 Jenkins 的网络连通性,想要远程通过域名访问 Jenkins,你还需要在自己的 PC 里配置 44.33.22.11 jenkins.example.com 静态域名解析记录。

接着在浏览器里通过 http://jenkins.example.com 就可以访问到 Jenkins 了:

Jenkins login

Jenkins login page

Jenkins 的 admin 用户初始登录密码是 changeme,如果你仔细看了前面 dtm 使用的配置文件,可以发现这是在配置文件里指定的。你可以尝试用 admin/changeme 登录 Jenkins 检查功能是否正常,不过当前你不需要在 Jenkins 上进行任何额外的操作。

Jenkins dashboard

Jenkins dashboard

6.4、访问 Harbor

前面你可能也已经通过 curl http://harbor.example.com 在主机内验证了 Harbor 的网络连通性,同样你可以通过 docker login harbor.example.com:80 命令来尝试登录 Harbor。

现在你需要在自己的 PC 里配置 44.33.22.11 harbor.example.com 静态域名解析记录。

接着你可以在浏览器里通过 http://harbor.example.com 访问到 Harbor:

Harbor login

Harbor login page

Harbor 的 admin 用户初始登录密码是 Harbor12345,你可以尝试用 admin/Harbor12345 登录 Harbor 检查功能是否正常,不过当前你同样也不需要在 Harbor 上进行任何额外的操作。

Harbor dashboard

Harbor dashboard

7、环境清理

你可以通过如下命令清理环境:

环境清理命令

  1. dtm delete -f config-tools.yaml -y