11

Jenkins Cluster Hosting for Continuous Integration and Delivery (CI/CD)

 4 years ago
source link: https://jelastic.com/blog/jenkins-cluster-hosting-continuous-integration-delivery/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

zeiUrij.png!web

Jenkins is an open-source continuous integration and delivery system designed to ensure build and deploy automation. It is well-suited to be installed in the cloud to run self- hosted pipelines .

Jenkins supports clustering via master-slave mode. A build process can be delegated to several slave (worker) nodes. This allows serving multiple projects in a single Jenkins cluster setup.

In this article, we’ll describe how to install Jenkins cluster with slave nodes auto-discovering and self-registering inside a master node. Jelastic PaaS implemented this solution in Jenkins DevOps Pack that can be installed from the Marketplace. Also, you will find out how to build a simple Java project hosted on GitHub using Jelastic Maven plugin .

Jenkins DevOps Pack Installation

1. Access the platform dashboard, click on Marketplace > Dev & Admin Tools, find Jenkins DevOps Pack and press Install .

eQbqYbu.png!web

2. If required, change the number of Workers (slaves), Environment name and destination Region .

nmam6ri.png!web

3. As it is shown in the picture below, the deployed Jenkins topology comprises one master node and two worker nodes. 

eQnam2V.png!web

Each worker node has an executor process that is used for building the projects . By default one job at a time can be run since there is one executor configured in a worker. You may change the number of executors. To do this click on Build Executor Status and press Configure at node you need to change the number of executors in.

7BN7viU.png!web

Change the number of executors and apply changes with the Save button.

BVv2Qbj.png!web

For example you build tasks stuck in a long queue , the worker nodes can be scaled out horizontally either manually or automatically for speeding up a large number of the project builds . In such cases, the package ensures an automatic discovery of new worker nodes by the Jenkins master node. It takes just a couple minutes to expand cluster e.g. up to 10 workers. 

uAJVVrU.png!web

Press Change Environment Topology and choose Workers layer (Java Engine) and do horizontal scaling with + button in the Horizontal Scaling section of the wizard. It’s also preferable to choose stateless scaling mode as we do not store any important state in the workers.  

36Z73af.png!web

Once scaling is completed, make sure the all newly created worker nodes were discovered and registered automatically at master. Go back to the Jenkins admin panel and click on Build Executor Status link once again to see all of available cluster members in a friendly format.

v6fa22B.png!web

Create a New Job through Jenkins Admin Panel

Now let’s see how to create a job that builds and publishes a simple project to a remote application server hosted on Jelastic PaaS . Here we use a Maven to build HelloWorld project from GitHub and deploy it with the help of Jelastic Maven plugin .

1. After installation, log in to the admin panel with credentials from the successful installation window.

VVrqiiq.png!web

2. At the top of the page click on create new jobs .

m6f6zmY.png!web

3. Specify the project name (e.g. My Java Project ), choose Maven project and press OK .

6VjuEz6.png!web

4. Define the project Description, click on the GitHub project and specify the repository URL. Within this tutorial, we use https://github.com/jelastic/helloworld.git .

zeYRJj2.png!web

5. The Jelastic Maven plugin requires the destination environment access parameters to be defined and passed to the pom.xml file located in the repository of the application you build. 

The plugin’s section in the pom.xml looks as follows:

<plugin>
     <groupId>com.jelastic</groupId>
     <artifactId>jelastic-maven-plugin</artifactId>
     <version>1.9.4</version>
     <configuration>
     <apiToken>${TOKEN}</apiToken>
     <context>${CONTEXT}</context>
     <environment>${TARGET_ENV}</environment>
     <comment>test-plugin</comment>
     <api_hoster>${JELASTIC_API_ENDPOINT}</api_hoster>
     <deployParams>
        <delay>1000</delay>
        <param2>value2</param2>
       ...
        <paramN>valueN</paramN>
     </deployParams>
     </configuration>
</plugin>

For defining parameters via project variables click on the checkbox This project is parameterized and add the first variable clicking on Add Parameter > String Parameter .

ArqYVj6.png!web

As for our example, we use four variables defined globally for the project:

  • JELASTIC_API_ENDPOINT –  Defines destination hosting platform hostname. See Hoster Domain field in the list of Jelastic Hosting Providers .
  • TARGET_ENV – deployment destination environment shortdomain name within the destination hosting platform. The destination environment must have a Java application server , here we use Tomcat . You can deploy to a single node environment or clusterized one.

eUbYRrn.png!web

  • TOKEN access token for the platform on which the deployment environment is located.

Set the Description for new access token and expiry date, then in the API field use a predefined Maven Plugin template which will allow the DeployApp API method to be executed. The respective access parameters will be selected automatically. 

uUB7feb.png!web

  • CONTEXT – the context path the application will be deployed to. The ROOT context is equivalent to the “ / ” path (e.g. http://myenv.vip.jelastic.cloud / ). In other occurrences (e.g. helloworld ), the context path is added to the environment name http://myenv.vip.jelastic.cloud/ helloworld/

Finally, the variables section should look like in the picture below.

q6fUBrj.png!web

6. Then scroll down to the Source Code Management section and specify the Repository URL .

nUBBn2b.png!web

7. In the Build section set the phases the Maven will execute: clean , package and jelastic:deploy . Finally, press the Save button.

jaqEFz3.png!web

Resulting from the clean and package phases you will get a war archive file. In our case, it will be helloworld.war file as for https://github.com/jelastic/helloworld project.

The jelastic:deploy is performed by Jelastic maven plugin on the fly during project build. The plugin allows you to deploy just built war file to Java application server in the remote environment at any available Jelastic Cloud Provider .

Build Java Project with Maven Plugin

1. Click on Build Now . Then confirm the parameters to be passed to the Jelastic Maven plugin.

eAVfumy.png!web

2. In the Build History , you can see that the build is performed successfully and marked with a green sign next to the #1 .

AbI7FfI.png!web

Build Debug inside Jenkins

By hovering over the sign next to the build, you can open the Console Output that may help you to debug project building.

JjmEJnq.png!web

The output contains all of the commands executed during the build. Jenkins does job distribution among all of the available worker nodes trying to load them equally.

If you want to execute project building on the specific node, go to the General section and enable Restrict where this project can be run option. Fill out the Label Expression field with hostname like node${nodeID} .

VZvYVr2.png!web

Java Project Deployment via Jenkins

If the build procedure succeeds, it means that Jenkins deployed the result application archive to the application server (e.g. myenv.vip.jelastic.cloud ).

Click on the Open in Browser button at the destination server to make sure the deployment was performed properly.

vEjUFr2.png!web

The helloworld.war application web page should be displayed as follows.

AzqYja6.png!web

That’s it! Now you know how to easily get Jenkins cluster installation in the cloud with the Maven project build and deploy . Register at one of Jelastic cloud service providers to automate continuous integration and delivery of your Java applications using pre-configured master-slave Jenkins cluster.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK