Running k3s inside WSL2 on a Surface Pro X
Sunday, May 09, 2021 in 2021
Categories:
2 minute read
I’m a proud owner of a Surafe Pro X SQ2 which is an ARM64 device. If you’ve been reading me, you know I like to tinker with kubernetes and therefore I needed a solution for this device. I remembered reading about k3s a lightweight …
Deploy AKS + Kubecost with Terraform
Friday, April 30, 2021 in 2021
Categories:
5 minute read
This morning I saw this tweet from Mr Brendan Burns: AKS Cost Monitoring and Governance With Kubecost https://t.co/OStwIBsuPp — brendandburns (@brendandburns) April 30, 2021 And I’m sure that once you also read through it, you’ll …
Deploy a Private Azure Cloud Shell with Terraform
Monday, April 12, 2021 in 2021
Categories:
5 minute read
By default Cloud Shell sessions run inside a container inside a Microsoft network separate from any resources you may have deployed in Azure. So what happens when you want to access services you have deployed inside a Virtual Network such as a …
ASP.NET Core OpenTelemetry Logging
Friday, January 08, 2021 in 2021
Categories:
2 minute read
As you may know I’ve been collaborating with Dapr and I’ve learned that one of the things it enables you to do is to collect traces with the use of the OpenTelemetry Collector and push the events to Azure Application Insights. After some …
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 …