Terraform is a powerful Infrastructure as Code (IaC) tool that utilizes a set of commands to manage and provision infrastructure. Here are some of the most commonly used Terraform commands: Core Workflow Commands: • terraform init: Initializes a working directory containing Terraform configuration files. This command downloads necessary...
Continue reading
November 6, 2025 Admin
linux-commands
No Comment
What is Helmfile & Why Use It?Helmfile is a declarative spec for deploying Helm charts. Think of it as docker-compose for Helm. It lets you manage multiple Helm charts across environments using a single YAML file.Helmfile is especially useful in GitOps workflows and CI/CD pipelines. It helps eliminate...
Continue reading
July 28, 2025 Admin
Kubernetes
No Comment
What is Kubernetes pod? Pod Cheat Sheet https://kubernetes.io/docs/tasks/configure-pod-container/assign-cpu-resource/ https://kubernetes.io/docs/concepts/workloads/pods/ Pods are the smallest and primary deployable objects of computing that you can create and manage in Kubernetes Cluster. A Pod signifies a single instance of a running process in your Kubernetes cluster, The containers of pod are managed...
Continue reading
December 29, 2022 Admin
Kubernetes
No Comment
Kubernetes is a free open-source container orchestration engine or tool for automating deployment, scaling, and management of containerized applications. Google initially designed Kubernetes, but the Cloud Native Computing Foundation now maintains the project. Kubernetes automates functioning tasks of container administration and includes integral commands for deploying applications, rolling...
Continue reading
December 28, 2022 Admin
Kubernetes
No Comment
In this tutorial you will learn what is Dockerfile and how to create docker image for nodejs application A Dockerfile is a text file that has a sequence of instructions commands on how to build your application image. It provisions a simple set of commands that you need...
Continue reading
December 27, 2022 Admin
Docker
No Comment