Share your IT Knowledge
Cloud & DevOps engineer writing about Azure, infrastructure-as-code, CI/CD, and the practical problems in between.
Latest posts
-
Auto-scale GitHub Runners (and ADO Agents) with Azure Container Apps Jobs and Workload Profiles
Intro In this blog I want to explain how to run your private GitHub Runners (this should work for ADO Agents as well) using the new Azure Container Apps Jobs (in preview) functionality with Workload
-
Using Azure Managed Identity with .Net Core on Azure DevOps Agents
During my last project I needed to run some integration test written in .Net Core 2.2 in an Azure Devops Pipeline. The code needed some secrets from an Azure KeyVault and doing some other stuff on
-
Using Git submodules in (private) Azure DevOps repositories
I often use Git Submodules in my repositories, it’s a handy way to have external source code in your repo, without having to worry much about the external updates and source management (you can just
-
Solve “System.Threading.Tasks.TaskCanceledException : The operation was canceled. ” on Ubuntu 18.04 in .Net Core 2.2
I am running some .Net Core 2.2 (at the moment of writing version 2.2.301) integration test in Azure DevOps (ADO) running on my private Linux Ubuntu 18.04 agents.The tests are quiet simple, just call
-
Run Elasticsearch image on Azure Container Instances
Last week I was moving a Docker application to Azure Container Instances. The application consisted out of 3 containers and one of them was using the official image of Elasticsearch: FROM
-
Create an Event Grid Subscription to an Azure Function V2
Last weeks I was developing an Azure Function with an Event Grid Trigger using the new V2 Runtime (in .Net Core) and because the changes from V1 some things where not working anymore as expected. In
-
Make your VSTS extensions smarter with Endpoints Datasource bindings
At the current customer I am working for I am creating a lot of VSTS Extensions to deploy Azure Resources. I want my tasks to be so much user friendly as possible, and one of the things to accomplish
-
Create a sharded MongoDB in Azure Cosmos DB
During my last project I was setting up a Release Pipeline in VSTS and one of the steps was to create a Sharded MongoDB in Cosmos DB. I am a big fan of the Azure CLI, which I use quiet often. I