1. Background In the context of rapid updates and iterations of Internet applications, traditional manual work or simple scripts can no longer adapt to this change. Devops provides us with a good solution. The application of CI/CD can greatly facilitate our daily work. Automated and fast continuous integration/continuous delivery brings us faster application development, better stability and stronger reliability. 2. Topological Environment 2.1 Architecture Topology As shown in the example above, the following process topology is briefly described:
2.2 System software version |
name | Version |
---|---|
Linux | CentOS 7.3 64-bit |
Docker | 1.13 |
Django | 2.0 |
3. Installation and Deployment
3.1 Jenkins installation and deployment
For Jenkins installation and deployment, please refer to: Jenkins Notes
After the installation is complete, add the Docker target server
Configuring the outgoing mail server
3.2 Docker installation and deployment
For more information on Docker installation and deployment and Dockerfile writing, please refer to: Docker Container Detailed Explanation
3.3 Gitlab installation and deployment
GitLab can be installed on a public Linux server by running some commands. If there is no public network, you need to manually modify external_url 'http://自己的內網IP'
in the /etc/gitlab/gitlab.rb
file
yum install -y libsemanage-static libsemanage-devel policycoreutils openss h-server openssh-clients postfix systemctl enable postfix && systemctl start postfix wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.0. 0-ce.0.el7.x86_64.rpm rpm -i gitlab-ce-8.0.0-ce.0.el7.x86_64.rpm # Get the public IP PUBLICIP=$(curl http://ipv4.icanhazip.com) # Modify sed -i "s/gitlab-server/${PUBLICIP}/g" /etc/gitlab/gitlab.rb gitlab-ctl reconfigure gitlab-ctl restart echo "Username:root" echo "Password:5iveL!fe"
3.4 Configuration Release Process
Jenkins creates a free-style software project
Use parameterized builds to facilitate subsequent deployment of Docker imported mapping source ports and releases
The source code comes from the Django project of gitlab
Use webhook to connect gitlab and jenkins
Jenkins installation plugin:
Generate a random token value
Configure the GitLab webhook URL generated by jenkins to gitlab
When the developer pushes the code locally, Jenkins will automatically trigger the project build. There is a git pull code written in the Dockerfile. Again, there is no need to distribute the code from Jenkins to the Docker host. Jenkins is used as a trigger for Docker builds.
Configure the email after the build is completed
Email template, email type selection:
Content type selection: HTML
Fill in the email subject:構建通知:${BUILD_STATUS} - ${PROJECT_NAME} - Build # ${BUILD_NUMBER} !
Build the notification template:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>${ENV, var="JOB_NAME"}-${BUILD_NUMBER} build log</title> </head> <body leftmargin="8" marginwidth="0" topmargin="8" marginheight="4" offset="0"> <table width="95%" cellpadding="0" cellspacing="0" style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif"> <tr> <td>(This email is automatically sent by the program, please do not reply!)</td> </tr> <tr> <td><h2> <font color="#0000FF">Build Result - ${BUILD_STATUS}</font> </h2></td> </tr> <tr> <td><br /> <b><font color="#0B610B">Build Information</font></b> <hr size="2" width="100%" align="center" /></td> </tr> <tr> <td> <ul> <li>Project name: ${PROJECT_NAME}</li> <li>Build number: ${BUILD_NUMBER} build</li> <li>SVN version: ${SVN_REVISION}</li> <li>Trigger reason: ${CAUSE}</li> <li>Build log: <a href="${BUILD_URL}console">${BUILD_URL}console</a></li> <li>Build URL: <a href="${BUILD_URL}">${BUILD_URL}</a></li> <li>Working directory: <a href="${PROJECT_URL}ws">${PROJECT_URL}ws</a></li> <li>Project URL: <a href="${PROJECT_URL}">${PROJECT_URL}</a></li> </ul> </td> </tr> <tr> <td><b><font color="#0B610B">Changes Since Last Successful Build: <hr size="2" width="100%" align="center" /></td> </tr> <tr> <td> <ul> <li>Historical changes: <a href="${PROJECT_URL}changes">${PROJECT_URL}changes</a></li> </ul> ${CHANGES_SINCE_LAST_SUCCESS,reverse=true, format="Changes for Build #%n:<br />%c<br />",showPaths=true,changesFormat="<pre>[%a]<br />%m</pre>",pathFormat=" %p"} </td> </tr> <tr> <td><b>Failed Test Results</b> <hr size="2" width="100%" align="center" /></td> </tr> <tr> <td><pre $FAILED_TESTS <br /></td> </tr> <tr> <td><b><font color="#0B610B">Build log (last 100 lines):</font></b> <hr size="2" width="100%" align="center" /></td> </tr> <!-- <tr> <td>Test Logs (if test has ran): href="${PROJECT_URL}ws/TestResult/archive_logs/Log-Build-${BUILD_NUMBER}.zip">${PROJECT_URL}/ws/TestResult/archive_logs/Log-Build-${BUILD_NUMBER}.zip</a> <br /> <br /> </td> </tr> --> <tr> <td><textarea cols="80" rows="30" readonly="readonly" style="font-family: Courier New">${BUILD_LOG, maxLines=100}</textarea> </td> </tr> </table> </body> </html>
The trigger type can be filled in according to your needs. Here, fill in always to send an email regardless of success or failure.
View files in the remote Docker server
Django deployment has used conda to package the project's Python 3.6 environment package to create a Docker image.
Previously, a pure Python 3.6 system was used. During each build, pip was used to install the modules in requirements.txt. However, due to the seldom changes in the environment over time, pip installation was time-consuming each time. Therefore, conda was used to customize the packaged Python environment to reduce the environment deployment time. The local disk can also be mounted in the environment through the -v parameter of docker image creation. Each time, a local conda can be built to complete the rapid environment deployment.
View Dockerfile
FROM 87a69025db6a MAINTAINER kaliarch # Define the working directory ENV WORK_DIR /work/ in docker # Create a working directory in docker RUN mkdir $WORK_DIR # Define the mapping port EXPOSE 80 WORKDIR $WORK_DIR RUN git clone http://123.xxxx.xxxxx.245/Devops/go2cloud.git # Add startup service script ADD *.sh ${WORK_DIR} CMD `which bash` /work/start_all.sh && tail -f /work/logs/server-$(date +%F).log
View the Django startup script
#!/bin/bash BASEPATH=$(cd `dirname $0`;pwd) PY_CMD=/python3/bin/python # Service entry file #MAIN_APP=${BASEPATH}/go2cloud/manage.py # Migration script entry file SCRIPTS_APP=${BASEPATH}/go2cloud/scripts/migrate_task_schdule.py # Delete the script entry file DELETE_APP=${BASEPATH}/go2cloud/scripts/delete_transfer_server.py # Log directory LOG_DIR=${BASEPATH}/logs/ [ ! -d ${LOG_DIR} ] && mkdir ${LOG_DIR} # Start the service #nohup ${PY_CMD} -u ${MAIN_APP} runserver 0.0.0.0:80 >> ${LOG_DIR}server-$(date +%F).log 2>&1 & # Start the script migration scheduling script echo "---------$0 $(date) excute----------" >> ${LOG_DIR}task-script-$(date +%F).log nohup ${PY_CMD} -u ${SCRIPTS_APP} >> ${LOG_DIR}script-$(date +%F).log 2>&1 & # Start the migration and deletion script echo "---------$0 $(date) excute----------" >> ${LOG_DIR}delete-script-$(date +%F).log nohup ${PY_CMD} -u ${DELETE_APP} >> ${LOG_DIR}delete-script-$(date +%F).log 2>&1 &
View the Jenkins deployment script
#!/bin/bash release=$1 port=$2 BASEPATH=$(cd `dirname $0`;pwd) # Build go2cloud-platform image cd /dockerwork docker build -t go2cloud-platform-mini:$release . IMGNAME=$(docker images|awk -v release=$release '{if($1=="go2cloud-platform-mini" && $2==release) print $3}') echo $IMGNAME # Start the container docker run -d -p ${port}:80 -v /testlog/:/work/logs ${IMGNAME}
Use the -v parameter to store logs persistently on the Docker host
4. Test display
4.1 Test Build
Manually build tests
4.2 View log
4.3 View Docker Container
4.4 Test the app
5. Reflection and Improvement
The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.
<<: MySQL deduplication methods
>>: How to generate Vue user interface by dragging and dropping
Table of contents Overview 1. RangeError 2. Refer...
This is the installation tutorial of mysql5.7.18....
Why should we use CSS animation to replace JS ani...
Preface We have already installed Docker and have...
The installation process of VMwarea will not be d...
Table of contents 1. What is currying 2. Uses of ...
After starting Docker, let's take a look at t...
Preface: The MySQL database provides a wide range...
MySQL has the following logs: Error log: -log-err...
1. Problem description The storage installed in t...
Test project: react-demo Clone your react-demo pr...
Table of contents 1. Timestamp to date 2. Convert...
Docker is becoming more and more mature and its f...
introduction It is okay to add or not add a semic...
The execution relationship between the href jump ...