Why can't I add Kubernetes support to a .NET Core Console project? Why can't I add Kubernetes support to a .NET Core Console project? kubernetes kubernetes

Why can't I add Kubernetes support to a .NET Core Console project?


You can do it manually, and create a script to make it simple:

  1. Create a Dockerfile for each project (dotnet core only of course). You can use Add -> Docker support
  2. Build docker with your solution (with VS or not)
  3. Push it to docker repository using docker push command (I'm almost sure that you are using private hub in Azure)
  4. Deploy your app using kubectl or helm to AKS
  5. Put above commands in script file so you won't do this manually each time