Sample application for the dapr article series in the dotnetpro magazine 2/2022 - 4/2022
Deployment to Azure Kubernetes Services
- Create a kubernetes cluster and connect your local docker installation to kubernetes
- Init the cluster for dapr: dapr init -k
- Create namespace: kubectl create namespace dinnerdemo
- deploy redis with helm:
helm repo add bitnami https://charts.bitnami.com/bitnami --namespace dinnerdemo
helm repo update
helm install redis bitnami/redis
- Go to directory deploy\components and deploy the dapr components with kubectl apply -f . -n dinnerdemo
- Create docker containers for all services and adjust the image names in the yaml files
- go to directory deploy and deploy the services with kubectl apply -f . -n dinnerdemo