Saksham Kambleskm-saksham.hashnode.dev·Nov 30, 2024"Unleashing the Power of Jenkins: A Beginner's Guide to CI/CD Automation! 🚀"Day 22 : Getting Started with Jenkins: Your CI/CD Journey Begins! 🚀 Hello, fellow learners! Today, we’re diving into Jenkins, a powerful tool that makes life easier for developers by automating the build, test, and deployment processes. Let’s explor...Jenkins
Sibananda Pradhanblogsiba.hashnode.dev·Nov 29, 2024DevOps Day#3Basic Linux Commands with a Twist Welcome to Day 3 of Linux exploration! Today's task is all about mastering basic Linux commands with some creative twists to enhance your learning. Below are the commands for each task, explained step-by-step. Task 1...TrainWithShubham
Dhruv Moradiyadhruvmoradiya.hashnode.dev·Oct 25, 2024Day 20: Docker Command Cheat-Sheet for DevOps EngineersIntroduction: Day 20 of #90DaysOfDevOps 🗓️ has arrived! After several hands-on sessions with Docker, I’m excited to share a comprehensive cheat-sheet covering the essential Docker and Docker Compose commands. Whether you’re diving into containerizat...90Dayofdevops#90daysofdevops
priyadarshi ranjanpriyadarshi.hashnode.dev·Aug 28, 2024Day- 45: Understanding Ingress in KubernetesHello DevOps Professionals! 👋 Aaj hum baat karenge ek important concept ke baare mein jo Kubernetes environments mein traffic management ke liye use hota hai, aur wo hai Ingress. Agar aap Kubernetes cluster mein applications deploy kar rahe hain aur...1 like·26 readsDevops2Articles1Week
Nikhil Yadavnikhil-blogs.hashnode.dev·May 29, 2024Day 74: Connecting EC2 with GrafanaIntroduction Monitoring the performance of your server infrastructure is crucial for ensuring optimal operation and identifying potential issues. In this tutorial, we'll explore how to set up Grafana and Prometheus to monitor CPU usage on Ubuntu inst...31 readsAWS
Nikhil Yadavnikhil-blogs.hashnode.dev·May 24, 2024Day 73 - Setup Grafana on AWS EC2 InstanceTask: Setup grafana in your local environment on AWS EC2. Go to the AWS console and Launch an EC2 instance Open port 3000 in your EC2 instance's security group to allow external access to Grafana. Once the instance is launched, you can SSH into the...#day73
Nikhil Yadavnikhil-blogs.hashnode.dev·May 21, 2024Day 70 - Terraform ModulesModules are containers for multiple resources that are used together. A module consists of a collection of .tf and/or .tf.json files kept together in a directory A module can call other modules, which lets you include the child module's resources int...#day70 of 90daysofdevops
Nikhil Yadavnikhil-blogs.hashnode.dev·May 20, 2024Day 69 - Meta-Arguments in TerraformWhen you define a resource block in Terraform, by default, this specifies one resource that will be created. To manage several of the same resources, you can use either count or for_each, which removes the need to write a separate block of code for e...day 69 of 90 daysofdevop
Nikhil Yadavnikhil-blogs.hashnode.dev·May 11, 2024Day 66 - Terraform Hands-on Project - Build Your Own AWS Infrastructure with Ease using Infrastructure as Code (IaC)Task: 1.Create a VPC (Virtual Private Cloud) with CIDR block 10.0.0.0/16 resource "aws_vpc" "main" { cidr_block = "10.0.0.0/16" tags = { Name = "main" } } This will create a new VPC in your AWS account with the specified CIDR block and a na...37 reads#TWSCommunity
Nikhil Yadavnikhil-blogs.hashnode.dev·May 7, 2024Day 63 - Terraform VariablesIn Terraform, variables are used to pass values from external sources into Terraform configuration. They provide a way to configure the infrastructure without hardcoding values directly into the configuration. Variables in Terraform are quite importa...#day63 of 90daysofdevops