Posts

Showing posts with the label Jenkins Project

Configuring Fresh Jobs in Jenkins

Image
Hello, Dear DevOps Automation enthusiast! This post is intended targeted to those who have just started the journey in the Continuous Integration and Continuous Deployment on the Cloud Platforms or On-premises environments. Pre-requisites Latest Stable version of Jenkins installed   Jenkins Master is in  running state  on your machine/VM/Cloud instance Able to login to the Jenkins Console In the left pane, you can click on 'New Item' or Click on the 'Start Using Jenkins' link. The welcome screen shows a link to create a new job! Jenkins First Job Project creation You need to enter the value for  Name for the build project Type of project Freestyle Project Pipeline Multi-configuration Project Folder GitHub Organization Multibranch Pipeline Enter the name of the project, Select the ' Freestyle project ' for the first time and click on the 'OK' button. New page loads with 6 sections/tabs for build project inputs. Job Configuration Sections In ...

Jenkins Installation on CentOS7/RHEL/Fedora and Ubuntu

Image
Hello DevOps enthusiast, I'm here with another interesting article on one more DevOps automation tool that is Jenkins CI, where I've explored all possible new learnings which will be used by DevOps. Jenkins installation on CentOS or RHEL or Fedora Simple instructions I've made for reference, which I've used. What are the Pre-requisites for the Jenkins installation Good speed of Internet Either of the platforms will be working: Vagrant installed VirtualBox installed to pull CentOS7 box AWS RHEL instance up and running  Bring up the CentOS/7 box (optional) Note: Ignore this section if you have a Cloud instance ready. Step 1: Create your own CentOS7 vagrant box with the following DSL Vagrantfile: Vagrant.configure(2) do |config| config.vm.box = "centos/7" config.vm.boot_timeout=600 config.vm.host_name = "mydev.devopshunter.com" config.vm.network "private_network", ip: "192.168.33.100" config.vm.syn...