使用Jenkins部署React项目的方法步骤
背景
公司的前端项目部署方式比较简单,整个过程基本上是手动的;
目标
通过工具实现以下几个任务:
- 编译、部署自动化;
- 选择指定版本进行回滚;
- 区分不同的分支(环境);
技术方案
- 选用 jenkins 作为部署工具;也便于后续 ci 的接入;
- 使用 docker 进行编译,确保每次编译的环境的稳定;
步骤
步骤一:搭建 jenkins
搭建 jenkins 有很多方案,这里选择使用 docker 搭建。
docker-compose.yml 的内容如下:
version: '3' services: fejenkins: user: root image: jenkinsci/blueocean ports: - "8080:8080" - "50000:50000" volumes: - /data/jenkins_home:/var/jenkins_home - /data/nm_cache:/var/nm_cache - /var/run/docker.sock:/var/run/docker.sock
通过 docker-compose up 命令启动;启动后通过初始密码进行第一个用户的创建和 jenkins 初始化的一些列操作,初始密码会打印在 jenkins docker 启动命令行的输出中,注意查看。
当然也可以不使用 docker-compose:
docker run --rm -u root -v /data/jenkins_home:/var/jenkins_home -v /data/nm_cache:/var/nm_cache -v /var/run/docker.sock:/var/run/docker.sock -p 8080:8080 -p 50000:50000 jenkinsci/blueocean
稍做解释:
- /data/jenkins_home:/var/jenkins_home /var/jenkins_home 是 jenkinsci image 的默认数据存放路径,这里将路径映射到宿主机的指定文件夹;
- /data/nm_cache:/var/nm_cache nm_cache 涵义是 node_modules cache,顾名思义,这里是想对编译所需的 node_modules 做缓存,将缓存文件夹也映射到宿主机;
- /var/run/docker.sock:/var/run/docker.sock 这里是将宿主机运行 docker 后产生的 sock 文件映射到了 jenkins container 中。这样,jenkins 中使用 docker 进行编译时,其实是使用宿主机的 docker 来运行的,而不是在 docker container 中又启动了 docker。这里稍微有点绕,若是暂时看不明白,需要找一些深入介绍 docker 的文章阅读;
步骤二:配置 jenkins
添加 credentials
通过 jenkins 进行 git 操作需要对应 git repo 的权限,这里需要用到有 git repo 权限的密钥文件。同样,通过 jenkins 将编译产物 scp 到服务器上的时候,也需要服务器的密钥文件。
这两类密钥文件需要配置在 jenkins 中,在:jenkins > credentials > system > global credentials (unrestricted) 里进行 add credentials 的操作。
添加 jenkins item
jenkins > new item,然后选择 pipeline,在下面的 pipeline 配置区域的 definition 中选择 pipeline script,script 如下:
pipeline { environment { server_ip_1 = "11.22.33.44" server_credentialsid = "abcd1234-abcd-abcd-abcd-abcd1234abcd" server_deploy_dir = "/your/www/path/" cache_dir = "/var/nm_cache/your_project_name/" git_url = "git@github.com:example/example.git" git_branch = "master" git_credentialsid = "abcd1234-abcd-abcd-abcd-abcd1234abcd" } agent none stages { stage('checkout code') { agent any steps { git ( branch: "${git_branch}", credentialsid: "${git_credentialsid}", url: "${git_url}", changelog: true ) sh ''' ls -al cache_dir="${cache_dir}" cache_nm="${cache_dir}node_modules" cache_lock="${cache_dir}yarn.lock" if [ ! -d "$cache_dir" ]; then mkdir ${cache_dir}; fi if [ ! -d "$cache_nm" ]; then mkdir ${cache_nm}; fi if [ -d "$cache_nm" ]; then ln -sf ${cache_nm} ./; fi if [ -f "$cache_lock" ]; then mv -n ${cache_lock} .; fi ls -al ''' } } stage('build') { agent { docker { image 'node:8-alpine' args '' } } steps { sh ''' npm config set registry https://registry.npm.taobao.org yarn install yarn build tar -cvf build.tar build ls -al mv ./yarn.lock ${cache_dir} rm -rf ./node_modules ls -al ''' archiveartifacts artifacts: 'build.tar', fingerprint: true } } stage('deploy') { agent any steps { unarchive mapping: ['build.tar': 'build.tar'] echo '--- deploy ---' sshagent(["${server_credentialsid}"]) { sh "scp -o stricthostkeychecking=no build.tar root@${server_ip_1}:${server_deploy_dir}" sh "ssh -o stricthostkeychecking=no root@${server_ip_1} \"rm -rf ${server_deploy_dir}build; tar -xvf ${server_deploy_dir}build.tar -c ${server_deploy_dir}\"" } } } } }
稍做解释:
这个部署脚本分为三个步骤:
- checkout code(在指定 git 仓库通过指定证书文件获取代码)
- build(通过指定命令进行编译,将编译后的产物存档)
- deploy(通过指定命令部署)
在 build 阶段前后,我们各做了一些工作,以求每次部署可以复用 node_modules,因为下载 node_modules 的时间可能很长,而并不是每次都会修改 package.json,所以其实 node_modules 大概率可以复用;
编译前:
- 看指定 node_modules 缓存文件夹是否存在,不存在则新建该文件夹;
- 看缓存文件夹中是否有 node_modules 文件夹,如果没有则新建该文件夹;并且将该文件夹软连接到当前目录;
- 看缓存文件夹中是否有 yarn.lock 文件,如果有则移动到当前文件夹;
编译后:
- 移除 node_modules 文件夹的软连接;
- 将 yarn.lock 文件移动到缓存文件夹中;
这里使用了 yarn install 的某些特性:
- 没有 node_modules 或者 yarn.lock 时会安装全量依赖;
- 有 node_modules 和 yarn.lock 但是 yarn.lock 和 package.json 不匹配时,会安装所需依赖;
- 有 node_modules 和 yarn.lock,且 yarn.lock 和 packge.json 配置时,跳过安装依赖;
使用
编译和部署
编译和部署直接点击 build now 即可;
回滚
回滚的本质其实是:重新部署某个历史版本。在 build history 找到想要重新部署的版本,点击 restart from stage,在新页面中选择 stage name 为 deploy。
其他
若是想要进入 docker container 交互,可以通过以下命令
docker exec -i -t [dockername] /bin/bash
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。