Simple Machine Learning with .NET Core Sample
Sunday, June 10, 2018 in 2018
Categories:
3 minute read
I think that more than a year and a half ago I read “Real-World Machine Learning” by Henrik Brink, Joseph Richards, and Mark Fetherolf. A book that is easy to read and goes “to the point”!!! I’m sure you know what I …
Accepting Azure Marketplace Terms with Azure CLI
Monday, May 21, 2018 in 2018
less than a minute
When you try to deploy a VM from the Marketplace using an ARM (json) template you’ll get an error like the one below in the case when you’ve not previously accepted the Legal terms for the image: [{"Legal terms have not been accepted …
Running Ansible Azure playbook in Azure Cloud Shell
Saturday, May 05, 2018 in 2018
less than a minute
NOTE: The issue described in this post was fixed!!! (ansible 2.5.2 and Azure CLI 2.0.34) Last week I tried to run this simple Ansible playbook in Azure Cloud Shell: # resource_group.yml # Create test resource group in west europe - name: Create a …
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 …