core-architectural-components-of-azure.hashnode.devAzure Kubernetes Service (AKS) Part 2To deploy an application on an Azure Kubernetes Service (AKS) cluster using a Kubernetes manifest file, here’s the process laid out step by step Create a Resource Group az group create --name aks-rg --location eastus Create an AKS Cluster az aks cr...Apr 4, 2025·3 min read
core-architectural-components-of-azure.hashnode.devAzure Kubernetes Service (aks)Microsoft Azure provides a cloud-based platform called Azure Kubernetes Service (AKS) to make it easier to build, manage, and scale Kubernetes-based containerised applications. By providing a managed environment, AKS goes beyond Kubernetes, an open-s...Apr 3, 2025·4 min read
core-architectural-components-of-azure.hashnode.devKUBERNETES (K8s)WHAT IS KUBERNETES? An open-source platform called Kubernetes, or K8s for short, was created to automate the deployment, scaling, and administration of containerised applications. It enables programmers to execute their apps across a cluster of compu...Mar 31, 2025·5 min read
core-architectural-components-of-azure.hashnode.devCreating your Custom Docker Image on Azure Container Registry and Deploying with Container InstancesIn the field of modern application development, containerisation has become an essential part of the deployment process. Docker is a popular containerisation solution that developers can use to package applications and their dependencies into portabl...Mar 19, 2025·5 min read
core-architectural-components-of-azure.hashnode.devDocker ComposeWHAT IS DOCKER COMPOSE? Docker compose is a concept introduced by Docker called Multi-Containers. To further explain this, a project may need a lot of services to run such as database, website or more. These services though in separate containers are...Mar 18, 2025·4 min read