Deploying a Dapr application to Kubernetes
The service code for our Dapr application is now complete. However, we must package it so that it can be deployed to Kubernetes in a suitable manner. Our first objective is to publish these services as Docker containers.
The sample that’s available for this chapter, C:\Repos\dapr-samples\chapter08
, is aligned with the status we reached at the end of Chapter 7, Using Actors. To recap, the following are the Dapr applications that comprise our overall solution:
sample.microservice.order
sample.microservice.reservation.service
sample.microservice.reservationactor.service
sample.microservice.customization
sample.microservice.shipping
There are other projects in this chapter’s folder. However, the previous list only represents the Dapr applications that need to be built as Docker images, which, for simplicity, are contained in separate folders with the same names and with matching .proj
ASP.NET project...