Monthly Archives: June 2018

Configuring Azure Kubernetes Service via the Terraform OSS Azure Resource Provider to use a custom DNS server for domain specific name resolution

I have already written about on how to use a custom DNS server for domain specific name resolution with AKS a couple of weeks ago. -> https://www.danielstechblog.io/using-custom-dns-server-for-domain-specific-name-resolution-with-azure-kubernetes-service/ Today I am writing about how you can leverage the newly announced Terraform OSS Azure Resource Provider for the same configuration with Read more [...]

Building ARM-based container images with VSTS for your Azure IoT Edge deployments

Currently, I am working and playing around with Azure IoT Edge deployments in combination with Azure Kubernetes Service and a Raspberry Pi 2. The files referenced in through out the blog article can be found in my GitHub repository. -> https://github.com/neumanndaniel/kubernetes/tree/master/iotedge/webserver My first challenge was to find a way on how to build ARM-based container images Read more [...]

Azure Kubernetes Service and Azure Active Directory integration

Last week Microsoft announced the GA of Azure Kubernetes Service. Since then we can integrate Azure Active Directory with Azure Kubernetes Service. When enabling Azure Active Directory integration, AKS requires that RBAC is also enabled. A detailed configuration guide can be found in the Azure documentation. -> https://docs.microsoft.com/en-us/azure/aks/aad-integration Before you can make Read more [...]

Using custom DNS server for domain specific name resolution with Azure Kubernetes Service

Just a short blog post about a small challenge I had these days. If you want to specify a custom DNS server for domain specific name resolution with AKS, you can do so. The necessary steps are already described in the Kubernetes documentation. -> https://kubernetes.io/docs/tasks/administer-cluster/dns-custom-nameservers/ Define a config map and apply it to your AKS cluster in Azure. The Read more [...]