KKKishaloy Kar Chowdhuryiniamkishaloy.hashnode.dev·Jan 21, 2025 · 88 min readAws RevisionWhat is AWS? AWS (Amazon Web Services) is a cloud computing platform by Amazon that provides on-demand IT resources like servers, storage, databases, and more over the internet. You pay only for what you use. Why do we need AWS? Cost-Effective: No ...00
KKKishaloy Kar Chowdhuryiniamkishaloy.hashnode.dev·Jan 6, 2025 · 56 min readLinux Commandspwd - to inquire the present working directory mkdir folder_name : command used to create a new folder. mkdir location/folder_name : creates the folder at the specified location. Example:- mkdir /home/ubuntu/Desktop/kk3/Yuvi ; it will create a folder...00
KKKishaloy Kar Chowdhuryiniamkishaloy.hashnode.dev·Dec 29, 2024 · 60 min readKubernetes RevisionKubernetes is designed to orchestrate containers. Why is Container Orchestration Needed? Imagine you have: An application split into multiple services (e.g., frontend, backend, database), each running in its own container. Multiple instances of the...00
KKKishaloy Kar Chowdhuryiniamkishaloy.hashnode.dev·Dec 27, 2024 · 31 min readDocker RevisionDocker is a tool that allows you to package your application along with everything it needs to run (like libraries, dependencies, and configurations) into a container. This ensures that the application runs the same way no matter where it's deployed,...00
KKKishaloy Kar Chowdhuryiniamkishaloy.hashnode.dev·Jun 7, 2024 · 1 min readAzure Container App Using TerraformExample usage of azurerm_container_app : main.tf file : terraform { required_providers { azurerm = { source = "hashicorp/azurerm" version = "~>3.0" } } } provider "azurerm" { features {} } resource "azurerm_resource_group...00