Day01-TerraWeek Challenge:Introduction to Terraform & BasicsIntroduction In the ever-evolving landscape of IT infrastructure management, Infrastructure as Code (IaC) has emerged as a game-changing approach. It allows organizations to manage and provision infrastructure resources using machine-readable configu...Dec 20, 2023·8 min read
Launching Your Kubernetes Cluster With DeploymentWhat is Deployment in k8s In Kubernetes (K8s), a Deployment is a resource object that provides declarative updates to applications. It allows you to describe an application's life cycle, such as which images to use for the app, the number of replicas...Oct 26, 2023·4 min read
Kubeadm Installation on Master and Worker NodesPre-requisites Ubuntu OS (Xenial or later) sudo privileges Internet access t2.medium instance type or higher Docker Installation on both Master and Worker Node To prepare both the master and worker nodes for Kubeadm, follow the Sample Command ...Oct 20, 2023·3 min read
Launching your first Kubernetes cluster with Nginx runningWhat is Minikube? Minikube is a tool that quickly sets up a local K8s cluster on any OS. It can deploy as a VM, a container, or on bare metal. Minikube is a pared-down version of K8s that gives you all the benefits of K8s with a lot less effort. This...Oct 11, 2023·3 min read
Kubernetes ArchitectureIntroduction Welcome back to the "90 Days of DevOps" challenge! I In this blog post, we are diving into the fascinating world of Kubernetes🛳️, the container-centric management software that has revolutionized the way we deploy and manage containeriz...Oct 10, 2023·9 min read
Jenkins Important interview QuestionsWhat’s the difference between continuous integration, continuous delivery, and continuous deployment? CI/CD stands for Continous Integration and Continous Delivery/Deployment. Continuous Integration (CI) Continuous Integration (CI) is a developmen...Oct 5, 2023·10 min read
Jenkins AgentsJenkins Master The Jenkins master server is the core component that manages configurations, scheduling jobs, and monitoring tasks. It acts as a control server that coordinates workflows defined in pipelines. The master node handles interactions with ...Oct 4, 2023·4 min read