Deploy an ASP.NET Core Web App to an AKS Cluster

In this post I will demonstrate containerising a simple ASP.NET Core web app, pushing it to an Azure Container Registry (ACR), and then running it in a two-node Azure Kubernetes Service (AKS) cluster. It’s not too CLI heavy, and has a lot of manual steps. But it’s a good insight into the end-to-end process of how you can develop and test an app in AKS. The prerequisites you will need installed on your machine:...

November 20, 2022 · 5 min · Mark kerry

Kubernetes - Pull an Image From a Private Docker Hub Registry

A while back I created a Go container which returns the hostname of the container its running on - markkerry.github.io - Running a Local Go Web App in Docker. Running this container from a Kubernetes cluster was what I had in mind when I created it. In this post I will walk through the steps I completed to create the Kubernetes deployment with an image pulled from Docker Hub. I will be using the same Ubuntu server lab running on VirtualBox - markkerry....

March 13, 2022 · 2 min · Mark kerry

Running a Kubernetes Cluster on Ubuntu and VirtualBox

In a previous post, I created the adminbox Ubuntu VM on VirtualBox. server ip addr comment adminbox 10.0.2.5 Jump box from host with SSH access to all on the Nat network In this post will be using the same setup to build a Kubernetes cluster and deploy an nginx container. I have created a further 3 VMs also connected to the KubeNatNetwork. Note: these only have one network adapter. network address: 10....

March 6, 2022 · 5 min · Mark kerry