Dapr: Reading local secrets with .NET 5
Wednesday, November 18, 2020 in 2020
Categories:
2 minute read
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 dotnet new console -n DaprSecretSample cd DaprSecretSample Add a reference to the Dapr.Client …
What I Learned From Hacktoberfest 2020
Sunday, October 18, 2020 in 2020
Categories:
2 minute read
Hacktoberfest® is an open global event where people all around de globe contribute to open source projects. The idea behind Hacktoberfest® is great, in my opinion it encourages and motivates contributions specially from those who don’t know …
Managing Terraform Cloud with .NET Core
Wednesday, September 09, 2020 in 2020
Categories:
4 minute read
Today I’m going to show you how to manage Terraform Cloud with .NET Core using the Tfe.NetClient library. The idea is to create a simple console application that will: Add GitHub as a VCS Provider. Create a Workspace conected to a GitHub repo …
Azure Functions: use Blob Trigger with Private Endpoint
Monday, May 18, 2020 in 2020
Categories:
8 minute read
The intent of this post is to help you understand how to connect an Azure Function to a Storage Account privately so all traffic flows through a VNet therefore enhancing the security of your solutions and blobs. The Case: Supose you have the …
Kubernetes NGINX ingress controller with Dapr
Sunday, April 05, 2020 in 2020
Categories:
3 minute read
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 …
Reading Kubernetes Secrets with Dapr and .NET Core
Sunday, March 22, 2020 in 2020
Categories:
3 minute read
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 …
MongoDB Enterprise Operator: Deploying MongoDB in AKS
Sunday, February 09, 2020 in 2020
Categories:
3 minute read
a couple of weeks ago I was trying to deploy MongoDB in AKS using the MongoDB Enterprise Operator and had trouble finding a simple tutorial to make the thing work. This post intends to fill that gap with a straight to the point approach. …
Dapr: Debugging .NET Core with Visual Studio Code
Sunday, February 09, 2020 in 2020
2 minute read
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, …
Visual Studio Code Remote Containers: Jekyll
Friday, January 10, 2020 in 2020
Categories:
3 minute read
For the last 3 years this blog was written using Jekyll which has a series of requirements such as Ruby that I don’t want to keep installing or maintaining on my PC. So I created this Developer Container for those who want to use Jekyll from an …