Shaik Mustafadevops-cicd.hashnode.dev·20 hours agoIntegrating Git with Jenkins: A Complete GuideIntroduction Continuous Integration (CI) is a core practice of modern DevOps. Integrating version control systems like Git with Jenkins empowers teams to automate code builds, tests & deployments seamlessly. In this article, we'll explore how to inte...jenkins integration with git
Harsh Soniharshdevopss.hashnode.dev·Dec 22, 2024Kubernetes Made Easy: Understanding Deployments, ConfigMaps, and SecretsKubernetes makes managing containerized applications easier. In this blog, we'll walk you through deploying a sample application, configuring it using ConfigMaps, and securing sensitive data with Secrets. Let’s get started! Step 1: Clone the Project...AWS
Amitabh soniamitabhdevops.hashnode.dev·Dec 22, 2024How to Install Essential DevOps Tools on Ubuntu/LinuxInstall Essential DevOps Tools on Ubuntu/Linux In this guide, we'll cover step-by-step instructions for installing the following DevOps tools on Ubuntu/Linux: AWS CLI, Docker, Jenkins, Kubernetes (KIND), Minikube, Kubectl, Terraform, Ansible, Prometh...Devops
Chinnayya Chinthaiac-terraform.hashnode.dev·Dec 21, 2024Essential Best Practices for Managing Terraform State and Code1. Only Modify Terraform State Through Terraform Commands Best Practice: Always use Terraform commands like terraform apply, terraform plan, and terraform destroy to manipulate the state file. Never manually edit the state file, as this could cause i...Beginner Developers
Shivam Singhjenkins-learnng.hashnode.dev·Dec 21, 2024My First Steps with JenkinsIntroductionHey everyone! 👋After completing my GitHub Actions learning, I decided to dive into Jenkins, one of the most popular tools in DevOps. In this article, I’ll share why I chose Jenkins, my initial experience, and how I’m progressing. Learnin...Jenkins
Bittu Sharmabittublog.hashnode.dev·Dec 20, 2024How to Implement a Secure DevSecOps PipelineSetup Infra To create an Ubuntu EC2 instance in AWS, follow these steps: 1. Sign in to the AWS Management Console: Go to the AWS Management Console at https://aws.amazon.com/console/. Sign in with your AWS account credentials. 2. Navigate to E...29 readsDevSecOps
Harsh Soniharshdevopss.hashnode.dev·Dec 20, 2024How to Launch a Kubernetes Cluster with Deployment and Deploy a ToDo AppKubernetes is an amazing tool for managing containerized applications. Today, we’ll dive into how to launch a Kubernetes cluster with a Deployment configuration. We'll deploy a sample ToDo application, leveraging Kubernetes’ auto-healing and auto-sca...AWS
Manav Rautday-1-of-90daysofdevops.hashnode.dev·Dec 20, 2024🎯 Automating Docker Workflows with Jenkins: A Step-by-Step Guide 🚀🚀 Task 1: Jenkins Freestyle Project for Your Dockerized App 🐳 🌟 Step 1: Set Up Jenkins Agent for Your App Install Jenkins on Your Machine 🛠️: Deploy Jenkins using Docker: docker run -d -p 8080:8080 -p 50000:50000 --name jenkins-server -v jenk...Jenkins
Shaik Mustafadevops-cicd.hashnode.dev·Dec 20, 2024From Code to Deployment: The Power of Jenkins in CI/CDJenkins is a powerful tool that simplifies the software delivery process. It’s a flexible platform used for a variety of software engineering tasks, but its main focus is managing CI/CD pipelines. Jenkins ensures that code changes are tested, validat...58 readsJenkins
Harsh Soniharshdevopss.hashnode.dev·Dec 19, 2024Easy Steps to Run Minikube and Kubernetes on AWS EC2 for BeginnersWhat is minikube? Minikube is a lightweight tool that spins up a local Kubernetes cluster within a virtual machine (VM). Think of it as your Kubernetes sandbox for learning and testing. Why Minikube?Here are some of its top benefits: Easy to Install...Devops