Deploy .NET Web Application in Kubernetes

Deploy .NET Web Application In Kubernetes Using Kustomize Tool

In this article, I will explain the basics of how to deploy a .NET Web application in Kubernetes using the Kustomize Tool. I will use Minikube to deploy the app on the local machine. Deploy .NET Web Application In Kubernetes, I have built a Docker image and pushed it to the Docker Hub registry. I will use the same artifacts that were used in that previous article. In this article, I will focus more on how to deploy into Minikube using the Kustomize Tool....

August 27, 2023 · 6 min · 1175 words · Prakash Bhandari
Deploy .NET Web Application in Kubernetes

Deploy .NET Web Application In Kubernetes

Introduction In this article, I will explain the basics of how to deploy a .NET Web application in Kubernetes. I will use Minikube to deploy the app on the local machine. You can either use an existing .NET Web Application or create a new .NET Web Application and containerize it. I am going to use the app that was created in my previous article. I’ve made some minor adjustments for clarity and proper capitalization....

August 26, 2023 · 5 min · 1053 words · Prakash Bhandari
Containerize Your .NET 7.0 Web Application With Docker

Containerize Your .NET 7.0 Web Application With Docker

Dockerizing is the process of packing, deploying, and running applications using Docker containers. Docker is very popular among the developers. In this post, I am going to show you “Containerize Your .NET 7.0 Web Application With Docker”. for local development. Before that, I will briefly explain what is docker and .NET What Is Docker? Docker is an open source tool that combines your application with all the necessary dependencies and libraries as one portable package (docker image)....

August 25, 2023 · 6 min · 1085 words · Prakash Bhandari
How to Embed a Json File in a .Net Assembly

How to Embed a Json File in a .Net Assembly?

Before directly jump into the implementation. It is better to understand what is assembly and why sometimes we need to embed files like text, json etc. in the assembly. What is an assembly within the .NET framework? As a new .NET programmer, understanding assembly can be very difficult. If you go to Microsoft documentation, you will find the following definition of a web assembly: An assembly is a collection of types and resources that are built to work together and form a logical unit of functionality....

August 20, 2023 · 4 min · 647 words · Prakash Bhandari