Created AWS EC2 templates and deployed a Nginx web server using Autoscaling and Elastic Loadbalancer.Jun 9, 2024·6 min read
AWS S3 Bucket creation, S3 Bucket host Static Website, IAM User creation and Policies assign, Security Best Practices IN IAM and AWS CLILogin to AWS console. Go to search button and search S3 click on it. Click on Create Bucket Enter the bucket Name---siddharth-bucket and AWS region is US East (Ohio) us-east-2 5. Object ownership ACLs disabled already and also AWS recomme...Aug 12, 2024·9 min read
DevOps Open-source 3 Tier Project Deployment | Virtualisation on AWS EC21.First we created Ec2 instance "Aws-boot-camp" Commands a.Check Ec2 instance git is present or not git b.We want wanderlust code in our ubuntu machine how? Use git clone command git clone https://github.com/siddharth249859/wanderlust.git Setting ...Apr 11, 2024·3 min read
Day 30 Task: Kubernetes ArchitectureKubernetes Overview With the widespread adoption of containers among organizations, Kubernetes, the container-centric management software, has become a standard to deploy and operate containerized applications and is one of the most important parts o...Feb 3, 2024·11 min read
Day 29 Task: Jenkins Important interview Questions.Jenkins Interview Here are some Jenkins-specific questions related so that anyone can use during a DevOps Engineer interview: Questions What’s the difference between continuous integration, continuous delivery, and continuous deployment? Benefits o...Jan 27, 2024·1 min read
Day 28 Task: Jenkins AgentsJenkins Master (Server) Jenkins’s server or master node holds all key configurations. Jenkins master server is like a control server that orchestrates all the workflow defined in the pipelines. For example, scheduling a job, monitoring the jobs, etc....Jan 26, 2024·4 min read
Day 27 Task: Jenkins Declarative Pipeline with DockerUse your Docker Build and Run Knowledge docker build - you can use sh 'docker build . -t <tag>' in your pipeline stage block to run the docker build command. (Make sure you have docker installed with correct permissions. docker run: you can use sh 'd...Jan 25, 2024·5 min read
Day 26 Task: Jenkins Declarative PipelineSome terms for your Knowledge What is Pipeline - A pipeline is a collection of steps or jobs interlinked in a sequence. Declarative: Declarative is a more recent and advanced implementation of a pipeline as a code. Scripted: Scripted was the first an...Jan 24, 2024·5 min read