Adding Code Analysis and StyleCop checks to .NET Core projects with dotnet-addcasa
Thursday, April 05, 2018 in 2018
Categories:
less than a minute
Today I’ll show you how to use dotnet-addcasa: a .NET Core global tool to add CodeAnalysis and Stylecop checks to your projects. If you want to manually add those checks or understand the tool internals check my post: .NET Core, Code Analysis …
Using Docker Multi Stage Builds to build an ASP.NET Core Echo Server
Wednesday, April 04, 2018 in 2018
Categories:
2 minute read
Today I’ll show you how to create a simple Echo Server with ASP.NET Core and then a Docker Image using multi-stage build: Create the Application Open a PowerShell promt and run: mkdir echoserver cd echoserver dotnet new console dotnet add …
Secure your Kubernetes services with NGINX ingress controller, tls and more.
Tuesday, March 20, 2018 in 2018
Categories:
5 minute read
Disclaimer: samples provided in this post were tested both in Azure Container Services (AKS) and Kubernetes provided by Docker for Windows. In previous posts I showed you how to Run a Precompiled .NET Core Azure Function in a Container and how to …
My kubectl Cheat Sheet
Saturday, March 17, 2018 in 2018
Categories:
less than a minute
This is a small kubectl Cheat Sheet with the list of commands and settings I use, almost on a daily basis, when working with kubernetes. Get version and cluster information Get kubectl version kubectl --version Get cluster information kubectl …
Microsoft MVP Global Summit 2018 Experience
Tuesday, March 13, 2018 in 2018
2 minute read
Disclaimer: For those of you who are expecting to learn or read about new technical information and cool new product features or roadmaps I have bad news: almost everything that Microsoft shares with MVPs during the Summit is under an NDA …
Consuming Azure Event Hubs Events With Kafka Connect
Sunday, February 18, 2018 in 2018
Categories:
2 minute read
So last week I was in a rush to find a fast and easy way to consume events from Azure Event Hubs and send them to a Kafka topic. After googling a bit I found this project: Kafka Connect Azure IoT Hub. Yes the name of the project can be misleading, …
Run a Durable Azure Function in a Container
Sunday, January 14, 2018 in 2018
4 minute read
Greetings readers! Hope you all a Happy New Year! Last post I was about running a Precompiled .NET Core Azure Function in a Container. This time let’s go one step further and Run a Durable Azure Function in a Container Prerequisites: Docker …
Run a Precompiled .NET Core Azure Function in a Container
Thursday, December 28, 2017 in 2017
4 minute read
So this morning I found my self browsing through the images Microsoft has published in the Docker Hub and then I saw this one: microsoft/azure-functions-runtime and decided to Run a Precompiled .NET Core Azure Function in a Container. Prerequisites: …
Deploy your first Service to Azure Container Services (AKS)
Friday, December 01, 2017 in 2017
Categories:
3 minute read
In this post I’ll show you how to Deploy your first Service to Azure Container Services (AKS). Prerequisites: Azure CLI installed and basic knowledge experience. Docker installed and basic knowledge. Azure Subscription Kubernetes experience. …
Use PowerShell to create a Microsoft Teams Channel
Tuesday, November 14, 2017 in 2017
Categories:
less than a minute
For those of you who have been trying to automate anything related to Microsoft Teams, let me tell you that there is a new PowerShell Module in town: Microsoft Teams 0.9.0 which you can install with the following command: Install-Module …