Docker

CI/CD using Jenkins and Docker

Posted on

In this blog, we will explore the CI/CD process using Jenkins and Docker. We will deploy the sample java application using Docker container. We will be deploying war file in a tomcat container. At last,this process will help us in achieving continuous integration and continuous deployment for your application inside a container If you want […]

Docker

Integrate Jenkins with Docker

Posted on

In this blog, we will integrate Jenkins with Docker so that we can have an automation to run the docker container directly from the Jenkins. We will create a freestyle and the pipeline job to run a docker image inside a container through Jenkins If you want to see the video for this article, click […]

Jenkins

CI/CD using Jenkins and Ansible

Posted on

In this blog, we will explore the CI/CD process using Jenkins and Ansible. We will deploy the sample java application using Ansible on the tomcat servers. At last,this process will help us in achieving continuous integration and continuous deployment for your application. If you want to see the video for this article, click here Prerequisite: […]

Jenkins

Setup SSH between Jenkins and Github

Posted on

This blog will guide you through a detailed but yet easy steps for setup SSH between Jenkins and Github .Using this approach, you do not need to provide your credentials to configure the git repo in your Jenkins job. and you will achieve the password-less connection.However in order to launch linux instance on AWS where […]

AWS

Jenkins Installation on AWS EC2 Linux Instance

Posted on

This blog will guide you through a detailed but yet easy steps for Jenkins installation on AWS ec2 linux instance. However in order to launch linux instance on AWS, follow this blog. If you want to see the video for this article, click here Prerequisite: Java 8 is a prerequisite. To Install Oracle JDK,  Click […]

Ansible

Integrate Ansible with Jenkins

Posted on

In this blog, we will explore how we can integrate Ansible with Jenkins in a CI/CD process. This will help us trigger the Ansible playbook using Jenkins instead of doing it manually from the Ansible master node. If you want to see the video for this article, click here Prerequisite Jenkins Server where Jenkins is […]

Jenkins

Integrate Terraform with Jenkins

Posted on

In this blog, we will Integrate Terraform with Jenkins First you need to install plugin Go to Manage Jenkins — Install Plugin — Terraform Now configure Terraform Manage Jenkins ->Global Tool Configuration To store AWS Secret Key Manage Jenkins -> Configure System -> Set environment variable Now create a pipeline job pipeline { agent any stages { stage(‘checkout’) { […]

AWS

CI/CD using Jenkins & Heroku

Posted on

Heroku is appreciable when you just want to focus on attributes of your application and not on the infrastructure. Moreover, it provides continuous deployment provision for those who does not want to invest in a DevOps team. However, a detailed and tightly bounded CI/CD workflow is always an ideal situation in agile development. Considering this […]

AWS

Installing Java & Jenkins on AWS ec2 Ubuntu 16.04

Posted on

With this blog you will get insight into the process of installing Java & Jenkins on AWS ec2 Ubuntu 16.04. Pre-requisite: For this lab to proceed, following are the pre-requirements Two AWS ec2 instances with AMI as Ubuntu 16.04 being launched. One AWS ec2 Ubuntu instance with Apache2 and php installed (Click here to learn […]