Related Posts
- Dapr: Reading local secrets with .NET 5
November 18, 2020
Now that Dapr is about to hit version 1.0.0 let me show you how easy is to read secrets with a .NET 5 console application. Create a console application# 1dotnet new console -n DaprSecretSample 2cd DaprSecretSample Add a reference to the Dapr.Client library# 1dotnet add package Dapr.Client --prerelease Create a Secret...
- Kubernetes NGINX ingress controller with Dapr
April 5, 2020
In this post I’ll show you how to expose your “Daprized” applications using and NGINX ingress controller. Prerequistes# A working kubernetes cluster with Dapr installed. If you need instructions please find them here Deploy an application to your Kubernetes cluster# I’ll be using a simple Azure Function I created back...
- Reading Kubernetes Secrets with Dapr and .NET Core
March 22, 2020
Dapr is an event-driven, portable runtime for building microservices on cloud and edge. Dapr supports the fundamental features you’ll need such as: service invocation, state management, publish/subscribe messaging and since version 0.5.0 the ability to read from secret stores! This post will show you to read kubernetes...
- Dapr: Debugging .NET Core with Visual Studio Code
February 9, 2020
So you are new to Dapr and you are trying to understand how it works with you .NET Core application. You already tried launching your app with the Dapr CLI and then you find yourself wondering on how to debug the mix with Visual Studio Code. Well, follow this simple steps and you’ll be ready: Modify launch.json# Change...