Using Jenkins to create continuous integration for microservice applications

Using Jenkins to create continuous integration for microservice applications

Experience Overview

This scenario guides you to deploy microservice applications to the SAE platform in conjunction with Jenkins: Scenario Resources

Background

This scenario mainly involves the following cloud products and services: Serverless Application Engine SAE

Serverless App Engine (SAE) is an application-oriented Serverless PaaS platform that can help PaaS layer users avoid IaaS operation and maintenance, use on demand, and pay by volume, so as to achieve low-threshold microservice application cloud migration. Compared with other Serverless products, it abstracts the concept of application and provides a complete set of microservice solutions, supporting mainstream microservice development frameworks such as Spring Cloud, Dubbo, and HSF, and realizing the perfect combination of Serverless architecture and microservice architecture.

Create Resources

On the left side of the page, click the Cloud Product Resources drop-down menu to view the resources for this experiment.
Click Free Provisioning to create the required resources.
illustrate:

The resource creation process takes 1 to 3 minutes. After completing the creation of the experimental resources, you can view the created resource information in the cloud product resource list, such as: IP address, user name and password.

Configure Project

1. Modify the Maven project configuration, add toolkit-maven-plugin and deployment information. For details, see Automatically deploy applications through Maven plug-ins.

Configure Jenkins

1. Select Manage Jenkins > Manage Plugins from the menu bar of the Jenkins console and install the Git and GitLab plugins.

2. Select Manage Jenkins > Global Tool Configuration from the menu bar of the Jenkins console, set the Maven version name and configure the path, and click Save.

3. Generate an SSH RSA key pair on the Jenkins server and import the public key into GitLab to achieve automatic authentication when Jenkins pulls GitLab code.

3.1 Generate an SSH RSA key pair on the Jenkins server. For more information, see GitLab documentation

3.2 Go to the GitLab homepage, select Settings > Deploy Keys in the menu bar, and click New Deploy Key to import the SSH RSA public key created on the Jenkins server.

Create a Jenkins job

1. Click New Item in the left navigation bar on the Jenkins homepage, enter the task name in the Create Task interface, select Freestyle project, click OK, and configure the task information.

2. Click Source Code Management, select Git in the Source Code Management tab, and set related parameters.

Repository URL: The Git protocol address of your project.
Credentials: Security credentials, select None.

3. Click Build Triggers and select GitHub hook trigger for GITScm polling on the Build Triggers tab.

4. Click Build Environment, select Add timestamps to the Console Output on the Build Environment tab, and add timestamps to the information output by the console.

5. Click Build. On the Build tab, click Add build step and select Invoke top-level Maven targets from the drop-down list.

6. Set Maven Version and Goals in the Invoke top-level Maven targets area. If you want to deploy a multi-module project, see (Optional) Create a Jenkins task for a multi-module project.

Maven Version: Click the drop-down box behind this option and select the Maven version name configured in the global tool configuration.
Goals: Enter mvn clean package toolkit:deploy -Dtoolkit_profile=toolkit_profile.yaml -Dtoolkit_package=toolkit_package.yaml -Dtoolkit_deploy=toolkit_deploy.yaml (If there are other parameters, please enter them according to the actual situation).

Configure GitLab Web Hook

1. Right-click the GitLab project on the GitLab homepage and select Setting > Web Hooks.

2. Enter http://jenkins server address:jenkins server listening port/git/notifyCommit?url=git protocol address of this project in the URL area of ​​the Web Hooks page.

The Jenkins server address shown in the figure is the web access address of your Jenkins server, such as 192.168.XX.XX:8080

3. After the configuration is complete, click Test Hook to test the configuration results

Submit changes to GitLab

If the above steps are configured correctly, a GitLab Hook will be triggered after submission. After receiving the Hook, Jenkins will build your Maven project and call the SAE POP API script to trigger deployment at the end of the build.

Submit the log information of successful deployment output (Build Number > Console Output).

If the deployment fails, you can log in to the SAE console to view the execution process of the deployment task. For specific steps, see Viewing Change Logs.

<<:  ElasticSearch IK Tokenizer Quick Start

>>:  With ten times storage cost savings, SINO ADM helps enterprises reduce costs and increase efficiency

Recommend

Snapchat QUIC Practice: Small Protocol Solve Big Problems

Friends who are familiar with the Internet should...

What are the most exciting IoT trends for 2018?

The Internet of Things is accelerating its entry ...

The battle between local deployment and cloud-managed WLAN architecture

Enterprises that need to upgrade their traditiona...

Why do you need to ask someone to deploy WiFi at home? You can do it yourself

WiFi has become a necessity in life, and I believ...

The arrival of the fourth largest operator, what can it change?

On October 12, China Broadcasting Network Co., Lt...

What is the value of developing smart education? 5G and AI play a key role

As the domestic prevention and control situation ...

Blockchain makes cities smarter and more innovative

This article takes stock of the smart city applic...

Cellular vs. WiFi: Which is Better for Your IoT Project?

As the name implies, Internet of Things (IoT) dev...