Microservice Project
  • 🤓11 Microservice CICD Pipeline using Jenkins, EKS and CloudFormation
  • Installing Tools
  • 🤖Jenkins setup
    • Installing Plugins in jenkins
  • 🐳Docker Setup
  • 🏃‍♂️Continuous Integration with GitHub and Jenkins
  • 🏃‍♂️Continuous Deployment with EKS
    • Create Service Account, Role & Assign that role
  • 👷Project Structure & summary.
Powered by GitBook
On this page

🤖Jenkins setup

Jenkins – an open-source automation server that enables developers around the world to reliably build, test, and deploy their software

PreviousInstalling ToolsNextInstalling Plugins in jenkins

Last updated 1 year ago

For installing follow these commands.

  1. firstly make a file with the name jenkins.sh >>"vim jenkins.h"

  2. copy the below command and paste it into a file and save it

sudo wget -O /usr/share/keyrings/jenkins-keyring.asc \
  https://pkg.jenkins.io/debian/jenkins.io-2023.key
echo "deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc]" \
  https://pkg.jenkins.io/debian binary/ | sudo tee \
  /etc/apt/sources.list.d/jenkins.list > /dev/null
sudo apt-get update
sudo apt-get install jenkins
//Then run the command to run all the above commands simultaneously.
#sudo chomd +x jenkins.sh
  1. copy the instance URL and paste into the browser with "URL:8080".


Jenkins
Now setup jenkins