I’m studying to renew my CKA certification. Part of the CKA certification learning goals is setting up and managing a cluster with kubeadm. The goal of this post is to share how to setup a cluster with kubeadm using VMs running on Azure. The steps that are required here are: Setup Azure infrastructure Setup first […]
Tag: azure
Setting up shared image gallery cross-tenant using the Azure CLI
The Azure shared image gallery is a service in Azure that helps you manage and store images in a central location. It’s then easy to share those images with other subscriptions. It is however not that easy to share those images with other subscriptions if those subscriptions are tied to a different AAD tenant. There’s […]
Customize core dump in Azure Kubernetes
A core dump is a common way to get information about process crashes. It saves the memory state, which can later be used for troubleshooting purposes. Being able to perform a core dump in Kubernetes is a little bit more involved than on a regular system. You will need to configure the Kubernetes hosts in […]
Using Terraform to create VNET service endpoints
Recently, I got a question on how to setup VNET service endpoints using Terraform. This blog post is a quick show and tell on how to set that up. For reference, a full example is available on my GitHub. Given it’s HashiConf at the time of writing, this seems like a good time to publish […]
Connect Azure Functions securely to Key Vault using VNET integration and Private Link
I did some work with a customer last week to integrate Functions with Key Vault without using the public IP of the Key Vault. This setup worked perfectly, although there were a couple of steps involved. To document those steps, I decided to write this post. In this post we’ll build a new Azure Function […]