Terraform Essentials: Lifecycles, Data Sources, and Meta Arguments OverviewThis is the second part of the terraform basics. We will understand this concept by discussing real-world use cases. Refer to the Terraform overview series, and follow it sequentially to understand the flow. Lifecycles Terraform lifecycles are config...Dec 14, 2024·7 min read
Terraform Essentials: Using Input/Output Variables and Resource AttributesIn this blog, we will understand the input/output variables and resource attributes in the Terraform. HCL Basics The HCL file consists of Blocks and Arguments. <block> <parameter> { key1 = value1 key2 = value2 } A block is defi...Dec 3, 2024·4 min read
Benefits of Choosing IAC to Address IT Infrastructure IssuesIn this blog, we will understand why we have to use IAC for IT infrastructure management. Traditional Deployment Cycle Business/Business analyst They understand the client’s needs and convert them to high-level technical requirements. Solution Arch...Dec 1, 2024·5 min read
How to Auto-Scale Todo Apps on Kubernetes for Better PerformanceThis blog will show how to auto-scale the todo application in Kubernetes. Pre-requisite Kindly refer to the following blogs, where we deploy the Todo application in the Kubernetes cluster using CRD, custom controller, init container, probes, resource...Nov 27, 2024·2 min read
How to Deploy Todo Apps with Kubernetes: A Step-by-Step GuideThis blog will show how to deploy the todo application with Kubernetes. Pre-requisite We already wrote the Todo application blog with Docker-Compose Deployment, so refer to that blog too.Link: https://minex.hashnode.dev/simple-docker-compose-deployme...Nov 25, 2024·4 min read
Understanding Pause Containers and Pod Disruptions in KubernetesAbout Pause container It is a process in Kubernetes that is associated with the container, a namespace holder, and a process manager that facilitates signal handling of the resources. It holds the pod network namespace. It is useful for pod lifecy...Nov 23, 2024·2 min read
Simple Docker-Compose Deployment for Python-based Todo ApplicationsThis blog will show how to deploy the todo application with a docker-compose file. About application This application setup consists of two main components orchestrated using Docker Compose: a PostgreSQL database and a Todo application. Here's a brie...Nov 21, 2024·3 min read