Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 15, 2024⚙Day 4 - Terraform State Management📍Task 1: Importance of Terraform State Terraform state plays a crucial role in managing infrastructure by tracking the current state of resources, resolving dependencies, enabling concurrency and collaboration, facilitating rollback and recovery, ex...86 readsTerraform
Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 10, 2024✨Day 31 : Launching your First Kubernetes Cluster with Nginx running🎡What is Minikube? Minikube is a tool that enables you to run Kubernetes locally on your machine. It creates a single-node Kubernetes cluster on your local computer, allowing you to develop and test Kubernetes applications without needing to set up ...1 like·89 readsKubernetes
Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 7, 2024👩🔧Embracing DevSecOps: Automating Security in Continuous Integration and Deployment📍Prerequisite AWS EC2 VM : We will be Using Amazon Machine Image As Ubuntu. GitHub : we will Bring our code from a github repo where we have pushed the code. Jenkins : Jenkins CI/CD is an automation server used for continuous integration and continu...12 likes·243 readsDevSecOps
Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 3, 2024🧱Configuring Infrastructure with Terraform📁Terraform Configuration File: Create a Terraform configuration file to define a resource of AWS EC2 instance. terraform { required_providers { aws = { source = "hashicorp/aws" version = "5.43.0" } } } provider "aws" { regi...Terraweekchallenge
Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 2, 2024🤖 Day 2: Terraform- A Guide to HCL SyntaxIntroduction: Welcome to TerraWeek Day 2! Today,To familiarize ourselves with the HashiCorp Configuration Language (HCL) syntax used in Terraform. Whether you're a seasoned infrastructure engineer or just stepping into the world of infrastructure as ...33 readsTerraform
Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 1, 2024⚙Day 1: Introduction to Terraform and Terraform Basics🎇What is Terraform and how can it help you manage infrastructure as code? -> Terraform is an open-source infrastructure as code (IaC) tool created by HashiCorp. It allows users to define and provision infrastructure resources using a declarative con...27 readsTerraform
Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 1, 2024☸Day 30 - Kubernetes Architecture💮Kubernetes Overview Kubernetes is opensource container orchestration tool, It provides auto-scaling, self-healing , service discovery, load balancing, and support for rolling updates and rollbacks complete orchestration.With the widespread adoption...36 readsKubernetes
Vivek Ashok Moudekarvivek0007.hashnode.dev·Apr 1, 2024📚Day 29 : Jenkins Important interview Questions.Jenkins Interview Here are some Jenkins-specific questions related to Docker that one can use during a DevOps Engineer interview: 🔄What’s the difference between continuous integration, continuous delivery, and continuous deployment? ->Certainly! Let...PipelineAsCode
Vivek Ashok Moudekarvivek0007.hashnode.dev·Mar 31, 2024🕴Day 28 - Jenkins Agents🖥Jenkins 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, et...1 likeJenkins
Vivek Ashok Moudekarvivek0007.hashnode.dev·Mar 30, 2024📜Day 27- Jenkins Declarative Pipeline with DockerDay 26 was all about a Declarative pipeline, now its time to level up things, let's integrate Docker and your Jenkins declarative pipeline 📚Use your Docker Build and Run Knowledge docker build - you can use sh 'docker build . -t <tag>' in your pipel...44 readsJenkins