Jenkins Interview Questions & AnswersDifference between CI, Continuous Delivery and Contnious Deployment? Continuous Integration: The process of automatically integrating the code changes into shared repository (Git), building the image from the code (Docker) , testing (sonarqube) is k...Oct 8, 2023·10 min read
Ansible Playbook to install Nginx on the remote serverCreate playbook - name: Nginx install and start hosts: servers become: yes tasks: - name: Install nginx apt: name: nginx state: latest - name: Start nginx service: name: nginx state: started enabled: yes Edit the host fi...Sep 20, 2023·1 min read
Ansible: Configuration managementUsing Ansible update 3 remote server Launch an instance on the ec2 instance (master) using key pair named as django_key_pair.pem Launch 3 server instances (server1, server2, server3) on ec2 using key pair named as django_key_pair.pem ssh master...Sep 19, 2023·1 min read
TerraWeekChallenge: Day 4 and Day 5TerraWeek Day 4 🌱 Task 1: Importance of Terraform State 📚 Research: Dive into the importance of Terraform state in managing infrastructure. Discover how Terraform state helps track the current state of resources and ensures smooth infrastructure pr...Sep 16, 2023·7 min read
Project: Multi-environment infrastructure deployment on terraformStep 1 First, we will create the required providers in terraform.tf file. vim terraform.tf terraform init It will install the aws plugins specified in the terraform.tf file. Step 2 Now, create providers.tf where we will configure the pr...Sep 14, 2023·6 min read
Terraweek challenge: Day 3 TaskTerraWeek Day 3 Task 1: Create a Terraform configuration file to define a resource of AWS EC2 instance, Azure storage account, Google Compute Engine, etc. (any one) Task 2: Check state files before running plan and apply commands & Use validate comm...Sep 13, 2023·1 min read
Terraweek challenge: Day 2 TaskTerraWeek Day 2 Task 1: Familiarize yourself with HCL syntax used in Terraform Learn about HCL blocks, parameters, and arguments In the below image block is resource, parameter is "docker_image"(resources type) "nginx-img-rsc" (resource name), arg...Sep 11, 2023·1 min read