Home
Programming With Wolfgang
Cancel

Azure Arc Series - Manage an on-premises Kubernetes Cluster with Azure Arc

Azure Arc is a great tool to manage your on-premises hardware with Azure. This series will focus on managing a Kubernetes (k3s) cluster and will show how to install Azure Arc, and how to use differ...

Install an on-premises k3s Cluster

Using cloud technologies is amazing and makes a developer’s life so much easier. Lately, I have to work with an on-premises Kubernetes cluster and I had to realize how much work it is to do all the...

Speaking about KEDA at the BASTA! Conference in Frankfurt

There is light at the end of the tunnel with the pandemic and therefore in person conferences and international travel is coming back. I am excited to travel to Germany and speak at the BASTA! conf...

Introducing Kubernetes Services

Pods can be deleted and recreated at any time, making them a so-called nonpermanent resource in Kubernetes. Therefore, the IP address of a pod will likely change regularly. This behavior will cause...

Use .NET Secrets in a Console Application

.NET Core made it easy to configure your application. Currently, I am working on a .NET 6 console application and this showed me that especially ASP.NET MVC makes it easy to set up middleware such ...

Create Git Commits in an Azure DevOps YAML Pipeline

This week I encountered the need to commit some code to a Git repository in an Azure DevOps pipeline. First, I had no idea how to could work because the repository has some branch policies and requ...

Azure Arc - Getting Started

Today, many companies use cloud services, but there is also still a sizeable group of companies that can’t use cloud services for various reasons. Modern software becomes more and more complex and,...

Use AAD Authentication for Applications running in AKS to access Azure SQL Databases

Removing passwords and using identities to access resources is the way to go for new applications. In my last posts Use AAD Authentication for Pods running in AKS and Implement AAD Authentication t...

Upgrade a Microservice from .NET 5.0 to .NET 6.0

.NET 6, the fastest and best .NET ever just got released. The improved performance, new C# features, and the 3-year long-term support are great incentives to upgrade existing applications. Let’s h...

.NET 6 Minimal APIs - Getting Started

Microsoft released .NET 6 and the most talked topic of this new version is minimal API. The promise of minimal APIs is that you can write APIs with barely any code. When I read the announcement, I ...