Working with Namespaces and Services in Kubernetes🏙️🔌📦🧩Introduction A Namespace is a group of related elements that each have a unique name or identifier. namespace is used to uniquely identify one or more names from other similar names of different objects, groups, or the namespace in general. Kubernete...Nov 29, 2023·2 min read
Introduction to Terraform and Terraform Basics🌐🚀Introduction🔄 Terraform simplifies infrastructure provisioning by providing a declarative, code-based approach that automates resource creation, management, and tracking. It offers benefits like multi-cloud support, dependency resolution, and change...Sep 14, 2023·4 min read
Jenkins Master-Slave🔌🖥️✅Introduction🤖 Jenkins Master’s job is to handle: Scheduling build jobs. Dispatching builds to the slaves for the actual execution. Monitor the slaves (possibly taking them online and offline as required). Recording and presenting the build resu...Sep 9, 2023·4 min read
Jenkins Declarative Pipeline with Docker🧪🛠️🚀Create a docker-integrated Jenkins declarative pipeline🎉 Steps to create a docker-integrated Jenkins pipeline: Step 1: Log in to your Jenkins account. Click on "+ new item". Step 2: Give a name to your project and select the "pipeline" option. Clic...Sep 7, 2023·1 min read
Jenkins Declarative Pipeline🚀✅Introduction🌈🌟 A Declarative Pipeline is a more structured and simplified way to define your build pipeline and continuous integration (CI) and continuous delivery (CD) processes. syntax: pipeline { agent any stages { stage('Bui...Sep 6, 2023·2 min read
Jenkins CI/CD ProjectTask 1: Create a connection to your Jenkins job and your GitHub Repository via GitHub Integration. Step 1: Create an AWS EC2 instance. Step 2: Install Jenkins on the EC2 instance. Link for installation guide: https://www.jenkins.io/doc/book/installi...Sep 3, 2023·2 min read
Jenkins Freestyle Project for DevOps Engineerscreate an agent for your app. Create a new Jenkins freestyle project for your app. In the "Build" section of the project, add a build step to run the "docker build" command to build the image for the container. Add a second step to run the "docker ru...Sep 2, 2023·2 min read