Tag: Kubernetes

Finding out what values were used on a deployed helm chart
Finding out what values were used on a deployed helm chart
Blog Posts

Let’s set the scene. You deployed the NGINX ingress controller a while ago onto an AKS cluster by following the Microsoft Docs https://learn.microsoft.com/azure/aks/ingress-basic and now need to update the nginx ingress controller but add a new configuration. If you read the doc page, you will notice the helm command is not using a values file but rather… READ MORE

Supercharge your AKS Deployments with GitOps and Flux V2
Supercharge your AKS Deployments with GitOps and Flux V2
Webinars

In this session, Geert Baeke looks at Flux V2 and Azure. He talks about best practices around structuring your git repositories, managing your deployments, and handling secrets. With GitOps you will supercharge your deployments to your Kubernetes clusters, wherever they are running.

AKS | Remove the Defender Profile from an AKS Cluster & Release Tracker
AKS | Remove the Defender Profile from an AKS Cluster & Release Tracker
Blog Posts

Hi! In this article, I will show you how you can remove the Defender for Containers profile from an existing AKS Cluster. az login az account set –subscription <subscription-id> az aks update –disable-defender –resource-group <your-resource-group> –name <your-cluster-name> To verify that the profile was successfully removed, run the following command: kubectl get pods -n azuredefender AKS… READ MORE

Azure Kubernetes Service and Azure Private Link Integration
Azure Kubernetes Service and Azure Private Link Integration
Blog Posts

If you have done any work with Azure, you have probably come across terms such as Azure Private Link Service (PLS) and Private Endpoints (PEs). To quickly illustrate what Azure PLS is, let’s look at a diagram from the Microsoft documentation for Azure SQL database: Above, Azure SQL Database uses Azure Private Link Service (PLS) to provide connectivity to the… READ MORE

Azure - Kubernetes Service: How to deploy a Linux Container Workload
Azure – Kubernetes Service: How to deploy a Linux Container Workload
Blog Posts

The intention of this post is to explain how to deploy a Linux Container Workload at Azure Kubernetes Service 1. Introduction This post explains how to deploy a Linux Container Workload at the Azure Kubernetes Service. The corresponding Container Image is stored and managed by an Azure Container Registry. The deployment will be conducted by adding the dedicated YAML code. This… READ MORE