Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

This sample shows how to create a private AKS cluster using Terraform and Azure DevOps.

License

NotificationsYou must be signed in to change notification settings

Azure-Samples/private-aks-cluster-terraform-devops

Repository files navigation

page_typelanguagesproductsnamedescriptionurlFragment
sample
azurecli
bash
javascript
terraform
csharp
azure
azure-firewall
azure-kubernetes-service
azure-container-registry
azure-storage
azure-blob-storage
azure-storage-accounts
azure-bastion
azure-private-link
azure-virtual-network
azure-key-vault
azure-log-analytics
azure-virtual-machines
azure-devops
Create a private Azure Kubernetes Service cluster using Terraform and Azure DevOps
This sample shows how to create a private AKS cluster using Terraform and Azure DevOps in a hub and spoke network topology with Azure Firewall.
private-aks-cluster-terraform-devops

This sample shows how to create aprivate AKS clusters using:

  • Terraform as infrastructure as code (IaC) tool to build, change, and version the infrastructure on Azure in a safe, repeatable, and efficient way.
  • Azure DevOps Pipelines to automate the deployment and undeployment of the entire infrastructure on multiple environments on the Azure platform.

In a private AKS cluster, the API server endpoint is not exposed via a public IP address. Hence, to manage the API server, you will need to use a virtual machine that has access to the AKS cluster's Azure Virtual Network (VNet). This sample deploys a jumpbox virtual machine in the hub virtual network peered with the virtual network that hosts the private AKS cluster. There are several options for establishing network connectivity to the private cluster.

  • Create a virtual machine in the same Azure Virtual Network (VNet) as the AKS cluster.
  • Use a virtual machine in a separate network and set up Virtual network peering. See the section below for more information on this option.
  • Use an Express Route or VPN connection.

Creating a virtual machine in the same virtual network as the AKS cluster or in a peered virtual network is the easiest option. Express Route and VPNs add costs and require additional networking complexity. Virtual network peering requires you to plan your network CIDR ranges to ensure there are no overlapping ranges. For more information, seeCreate a private Azure Kubernetes Service cluster. For more information on Azure Private Links, seeWhat is Azure Private Link?

In addition, the sample creates a private endpoint to access all the managed services deployed by the Terraform modules via a private IP address:

  • Azure Container Registry
  • Azure Storage Account
  • Azure Key Vault

NOTE
If you want to deploy aprivate AKS cluster using a public DNS zone to simplify the DNS resolution of the API Server to the private IP address of the private endpoint, you can use this project under myGitHub account or onAzure Quickstart Templates.

Architecture

The following picture shows the high-level architecture created by the Terraform modules included in this sample:

Architecture

The following picture provides a more detailed view of the infrastructure on Azure.

Architecture

The architecture is composed of the following elements:

  • A hub virtual network with three subnets:
    • AzureBastionSubnet used by Azure Bastion
    • AzureFirewallSubnet used by Azure Firewall
  • A new virtual network with three subnets:
    • SystemSubnet used by the AKS system node pool
    • UserSubnet used by the AKS user node pool
    • VmSubnet used by the jumpbox virtual machine and private endpoints
  • The private AKS cluster uses a user-defined managed identity to create additional resources like load balancers and managed disks in Azure.
  • The private AKS cluster is composed of a:
    • System node pool hosting only critical system pods and services. The worker nodes have node taint which prevents application pods from beings scheduled on this node pool.
    • User node pool hosting user workloads and artifacts.
  • An Azure Firewall used to control the egress traffic from the private AKS cluster. For more information on how to lock down your private AKS cluster and filter outbound traffic, see:
  • An AKS cluster with a private endpoint to the API server hosted by an AKS-managed Azure subscription. The cluster can communicate with the API server exposed via a Private Link Service using a private endpoint.
  • An Azure Bastion resource that provides secure and seamless SSH connectivity to the Vm virtual machine directly in the Azure portal over SSL
  • An Azure Container Registry (ACR) to build, store, and manage container images and artifacts in a private registry for all types of container deployments.
  • When the ACR SKU is equal to Premium, a Private Endpoint is created to allow the private AKS cluster to access ACR via a private IP address. For more information, seeConnect privately to an Azure container registry using Azure Private Link.
  • A jumpbox virtual machine used to manage the Azure Kubernetes Service cluster
  • A Private DNS Zone for the name resolution of each private endpoint.
  • A Virtual Network Link between each Private DNS Zone and both the hub and spoke virtual networks
  • A Log Analytics workspace to collect the diagnostics logs and metrics of both the AKS cluster and Vm virtual machine.

Limitations

A private AKS cluster has the following limitations:

  • IP authorized ranges can't be applied to the private api server endpoint, they only apply to the public API server
  • Azure Private Link service limitations apply to private AKS clusters.
  • No support for Azure DevOps Microsoft-hosted agents with private clusters. Consider to useSelf-hosted Agents.
  • For customers that need to enable Azure Container Registry to work with private AKS cluster, the Container Registry virtual network must be peered with the agent cluster virtual network.
  • No support for converting existing AKS clusters into private clusters
  • Deleting or modifying the private endpoint in the customer subnet will cause the cluster to stop functioning.

Requirements

There are some requirements you need to complete before we can deploy Terraform modules using Azure DevOps.

  • Store the Terraform state file to an Azure storage account. For more information on how to create to use a storage account to store remote Terraform state, state locking, and encryption at rest, seeStore Terraform state in Azure Storage
  • Create an Azure DevOps Project. For more information, seeCreate a project in Azure DevOps
  • Create anAzure DevOps Service Connection to your Azure subscription. No matter you use Service Principal Authentication (SPA) or an Azure-Managed Service Identity when creating the service connection, make sure that the service principal or managed identity used by Azure DevOps to connect to your Azure subscription is assigned the owner role on the entire subscription.

Fix the routing issue

When you deploy an Azure Firewall into a hub virtual network and your private AKS cluster in a spoke virtual network, and you want to use the Azure Firewall to control the egress traffic using network and application rule collections, you need to make sure to properly configure the ingress traffic to any public endpoint exposed by any service running on AKS to enter the system via one of the public IP addresses used by the Azure Firewall. In order to route the traffic of your AKS workloads to the Azure Firewall in the hub virtual network, you need to create and associate a route table to each subnet hosting the worker nodes of your cluster and create a user-defined route to forward the traffic for0.0.0.0/0 CIDR to the private IP address of the Azure firewall and specifyVirtual appliance asnext hop type. For more information, seeTutorial: Deploy and configure Azure Firewall using the Azure portal.

When you introduce an Azure firewall to control the egress traffic from your private AKS cluster, you need to configure the internet traffic to go throught one of the public Ip address associated to the Azure Firewall in front of the Public Standard Load Balancer used by your AKS cluster. This is where the problem occurs. Packets arrive on the firewall's public IP address, but return to the firewall via the private IP address (using the default route). To avoid this problem, create an additional user-defined route for the firewall's public IP address as shown in the picture below. Packets going to the firewall's public IP address are routed via the Internet. This avoids taking the default route to the firewall's private IP address.

Firewall

For more information, see:

Terraform State

In order to deploy Terraform modules to Azure you can use Azure DevOps CI/CD pipelines.Azure DevOps provides developer services for support teams to plan work, collaborate on code development, and build and deploy applications and infrastructure components using IaC technologies such as ARM Templates, Bicep, and Terraform.

Terraform storesstate about your managed infrastructure and configuration in a special file called state file. This state is used by Terraform to map real-world resources to your configuration, keep track of metadata, and to improve performance for large infrastructures. Terraform state is used to reconcile deployed resources with Terraform configurations. When using Terraform to deploy Azure resources, the state allows Terraform to know what Azure resources to add, update, or delete. By default, Terraform state is stored in a local file named "terraform.tfstate", but it can also be stored remotely, which works better in a team environment. Storing the state in a local file isn't ideal for the following reasons:

  • Storing the Terraform state in a local file doesn't work well in a team or collaborative environment.
  • Terraform state can include sensitive information.
  • Storing state locally increases the chance of inadvertent deletion.

Each Terraform configuration can specify abackend, which defines where and how operations are performed, wherestate snapshots are stored. TheAzure Provider orazurerm can be used to configure infrastructure in Microsoft Azure using the Azure Resource Manager API's. Terraform provides abackend for the Azure Provider that allows to store the state as a Blob with the given Key within a given Blob Container inside a Blob Storage Account. This backend also supports state locking and consistency checking via native capabilities of the Azure Blob Storage. When using Azure DevOps to deploy services to a cloud environment, you should use this backend to store the state to a remote storage account. For more information on how to create to use a storage account to store remote Terraform state, state locking, and encryption at rest, seeStore Terraform state in Azure Storage. Under thestorage-account folder in this sample, you can find a Terraform module and bash script to deploy an Azure storage account where you can persist the Terraform state as a blob.

Azure DevOps Self-Hosted Agent

If you plan to useAzure DevOps, you can't useAzure DevOps Microsoft-hosted agents to deploy your workloads to a private AKS cluster as they don't have access to its API server. In order to deploy workloads to your private SAKS cluster you need to provision and use anAzure DevOps self-hosted agent in the same virtual network of your private AKS cluster or in peered virtual network. In this latter case, make sure to the create a virtual network link between the Private DNS Zone of the AKS cluster in the node resource group and the virtual network that hosts the Azure DevOps self-hosted agent. You can deploy a singleWindows orLinux Azure DevOps agent using a virtual machine, or use a virtual machine scale set (VMSS). For more information, seeAzure virtual machine scale set agents. For more information, see:

As an alternative, you can set up a self-hosted agent in Azure Pipelines to run inside a Windows Server Core (for Windows hosts), or Ubuntu container (for Linux hosts) with Docker and deploy it as a pod with one or multiple replicas in your private AKS cluster. If the subnets hosting the node pools of your private AKS cluster are configured to route the egress traffic to an Azure Firewall via a route table and user-defined route, make sure to create the proper application and network rules to allow the agent to access external sites to download and install tools likeDocker,kubectl,Azure CLI, andHelm to the agent virtual machine. For more informations, seeRun a self-hosted agent in Docker andBuild and deploy Azure DevOps Pipeline Agent on AKS.

Thecd-self-hosted-agent pipeline in this sample deploys aself-hosted Linux agent as an Ubuntu Linux virtual machine in the same virtual network hosting the private AKS cluster. The pipeline uses a Terraform module under theagent folder to deploy the virtual machine. Make sure to specify values for the variables in thecd-self-hosted-agent and in theagent.tfvars. The following picture represents the network topology of Azure DevOps and self-hosted agent.

Architecture

Variable Groups

Thekey-vault folder contains a bash script that uses Azure CLI to store the following data to an Azure Key Vault. This sensitive data will be used by Azure DevOps CD pipelines viavariable groups. Variable groups store values and secrets that you want to pass into a YAML pipeline or make available across multiple pipelines. You can share use variables groups in multiple pipelines in the same project. You can Link an existing Azure key vault to a variable group and map selective vault secrets to the variable group. You can link an existing Azure Key Vault to a variable group and select which secrets you want to expose as variables in the variable group. For more information, seeLink secrets from an Azure Key Vault.

The YAML pipelines in this sample use a variable group shown in the following picture:

Variable Group

The variable group is configured to use the following secrets from an existing Key Vault:

VariableDescription
terraformBackendContainerNameName of the blob container holding the Terraform remote state
terraformBackendResourceGroupNameResource group name of the storage account that contains the Terraform remote state
terraformBackendStorageAccountKeyKey of the storage account that contains the Terraform remote state
terraformBackendStorageAccountNameName of the storage account that contains the Terraform remote state
sshPublicKeyKey used by Terraform to configure the SSH public key for the administrator user of the virtual machine and AKS worker nodes
azureDevOpsUrlUrl of your Azure DevOps Organization (e.g.https://dev.azure.com/contoso)
azureDevOpsPatPersonal access token used by an Azure DevOps self-hosted agent
azureDevOpsAgentPoolNameName of the agent pool of the Azure DevOps self-hosted agent

Azure DevOps Pipelines

You can use Azure DevOps YAML pipelines to deploy resources to the target environment. Pipelines are part of the same Git repo that contains the artifacts such as Terraform modules and scripts and as such pipelines can be versioned as any other file in the Git reppsitory. You can follow a pull-request process to ensure changes are verified and approved before being merged. The following picture shows the key concepts of an Azure DevOps pipeline.

Pipeline

  • Atrigger tells a Pipeline to run.
  • Apipeline is made up of one or morestages. Apipeline can deploy to one or moreenvironments.
  • Astage is a way of organizingjobs in a pipeline and each stage can have one or more jobs.
  • Eachjob runs on oneagent. A job can also be agentless.
  • Eachagent runs a job that contains one or moresteps.
  • Astep can be atask orscript and is the smallest building block of a pipeline.
  • Atask is a pre-packaged script that performs an action, such as invoking a REST API or publishing a build artifact.
  • Anartifact is a collection of files or packages published by a run.

For more information on Azure DevOps pipelines, see:

This sample provides three pipelines to deploy the infrastructure using Terraform modules, and one to undeploy the infrastructure.

Pipeline NameDescription
cd-validate-plan-apply-one-stage-tfvarsIn Terraform, to set a large number of variables, you can specify their values in a variable definitions file (with a filename ending in either.tfvars or.tfvars.json) and then specify that file on the command line with a-var-file parameter. For more information, seeInput Variables. The sample contains three different.tfvars files under thetfvars folder. Each file contains a different value for each variable and can be used to deploy the same infrastructure to three distinct environment: production, staging, and test.
cd-validate-plan-apply-one-stage-varsThis pipeline specifies variable values for Terraformplan andapply commands with the-var command line option. For more information, seeInput Variables.
cd-validate-plan-apply-separate-stages.ymlThis pipeline is composed of three distinct stages forvalidate,plan, andapply. Each stage can be run separately.
destroy-aks-deploymentThis pipeline uses thedestroy command to fully remove the resource group and all the Azure resources.
cd-self-hosted-agent.This pipeline can be used to deploy anAzure DevOps self-hosted agent as an Ubuntu virtual machine in the same subnet of the jump-box virtual machine. This deployment requires you to pass as a paramater the following information:
  • Url of your Azure DevOps Organization
  • Personal access token to access your Azure DevOps organization
  • Name of the self-hosted agent pool to join
This pipeline must be executed after the AKS deployment.
cd-redmine-via-helmThis pipeline can be used to deploy the Bitnamiredmine project management web application using a Helm chart fromArtifactHub. This pipeline creates all the necessary Azure resources to front the Public IP of the Standard Load Balancer used by the service with the Azure Firewall in the Hub virtual network and expose the service with a hostname defined in an Azure public DNS zone. For more information, see:
destroy-self-hosted-agentThis pipeline can be used to destroy the Azure DevOps self-hosted agent.
destroy-redmine-via-helmThis pipeline can be used to uninstall the Bitnamiredmine project management we application using a Helm chart and destroy all the Azure resources used to exposed the service via the Azure Firewall and the AKS cluster Standard Load Balancer.
ci-test-web-appThis pipeline can be used to build the container image of thetest web application and store it to an Azure Container Registry. In addition, the pipeline stores theHelm chart to another repository inside the registry.
cd-test-web-appThis pipeline can be used to deploy thetest web application using a Helm chart. This pipeline creates all the necessary Azure resources to front the Public IP of the Standard Load Balancer used by the service with the Azure Firewall in the Hub virtual network and expose the service with a hostname defined in an Azure public DNS zone. For more information, see:

Terraform Extension for Azure DevOps

All the pipelines make use of the tasks of theTerraform extension. This extension provides the following components:

  • A service connection for connecting to an Amazon Web Services(AWS) account
  • A service connection for connecting to a Google Cloud Platform(GCP) account
  • A task for installing a specific version of Terraform, if not already installed, on the agent
  • A task for executing the core Terraform commands

The Terraform tool installer task acquires a specified version ofTerraform from the Internet or the tools cache and prepends it to the PATH of the Azure Pipelines Agent (hosted or private). This task can be used to change the version of Terraform used in subsequent tasks. Adding this task before theTerraform task in a build definition ensures you are using that task with the right Terraform version.

TheTerraform task enables running Terraform commands as part of Azure Build and Release Pipelines providing support for the following Terraform commands

This extension is intended to run on Windows, Linux and MacOS agents. As an alternative, you can use the [Bash Task](https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/bash?view=azure-devops) orPowerShell Task to install Terraform to the agent and run Terraform commands.

Azure Resources

The following picture shows the resources deployed by the ARM template in the target resource group using one of the Azure DevOps pipelines in this reporitory.

Resource Group

The following picture shows the resources deployed by the ARM template in the MC resource group associated to the AKS cluster:

MC Resource Group

Use Azure Firewall in front of the Public Standard Load Balancer of the AKS cluster

Resource definitions in the Terraform modules make use of thelifecycle meta-argument to customize the actions when Azure resources are changed outside of Terraform control. Theignore_changes argument is used to instruct Terraform to ignore updates to given resource properties such as tags. The Azure Firewall Policy resource definition contains a lifecycle block to prevent Terraform from fixing the resource when a rule collection or a single rule gets created, updated, or deleted. Likewise, the Azure Route Table contains a lifecycle block to prevent Terraform from fixing the resource when a user-defined route gets created, deleted, or updated. This allows to manage the DNAT, Application, and Network rules of an Azure Firewall Policy and the user-defined routes of an Azure Route Table outside of Terraform control.

Thecd-redmine-via-helm pipeline shows how you can deploy a workload to a private AKS cluster using anAzure DevOps Pipelines that runs on aSelf-hosted Agent. The sample deploys the Bitnamiredmine project management web application using a publicHelm chart. The following diagram shows the network topology of the sample:

Public Standard Load Balancer

The message flow can be described as follows:

  1. A request for the AKS-hosted web application is sent to a public IP exposed by the Azure Firewall via a public IP configuration. Both the public IP and public IP configuration are dedicated to this workload.
  2. AnAzure Firewall DNAT rule is used to to translate the Azure Firewall public IP address and port to the public IP and port used by the workload in thekubernetes public Standard Load Balancer of the AKS cluster in the node resource group.
  3. The request is sent by the load balancer to one of the Kubernetes service pods running on one of the agent nodes of the AKS cluster.
  4. The response message is sent back to the original caller via a user-defined with the Azure Firewall public IP as address prefix and Internet as next hope type.
  5. Any workload-initiated outbound call is routed to the private IP address of the Azure Firewall by the default user-defined route with0.0.0.0/0 as address prefix and virtual appliance as next hope type.

Thecd-redmine-via-helm pipeline performs the following steps:

  • TheHelm Installer task installsHelm on theSelf-hosted Agent: this step is not necessary ifHelm is already installed on the agent
  • TheKubectl Installer taks installskubectl on the self-hosted agent: even this step is not necessary ifkubectl is already installed on the agent
  • Uses theAzure CLI task to run the following steps:
    • Gets the AKS cluster credentials using theaz aks get-credentials command
    • Uses theHelm CLI to add the repo for the Bitnamiredmine project management web application
    • UsesHelm CLI to check if the Helm chart is already deployed:
      • If yes, it upgrades the current release.
      • If not, it installs a new release.
    • Useskubectl to retrieve the Public IP of the redmine service.
    • Uses theaz network public-ip show to check if an Azure Public IP resource calledAksName_HelmReleaseNamespace_ServiceName already exists in a give resource group.
      • If yes, it retrieves its public IP address.
      • If not, it creates a new Azure Public IP resource using theaz network public-ip create and retrieves its public IP address.
    • Uses theaz network firewall ip-config show command to check if an Azure Firewall IP configuration namedAksName_HelmReleaseNamespace_ServiceName already exists. If not, it creates a new Azure Firewall IP configuration using theaz network firewall ip-config create command.
    • Uses theaz network firewall policy rule-collection-group collection list command to check if a DNAT rule collection namedDnatRules already exists in the Azure Firewall Policy. If not, it creates a new a DNAT rule collection namedDnatRules under theDefaultDnatRuleCollectionGroup rule collection group using theaz network firewall policy rule-collection-group collection add-filter-collection command.
    • Uses theaz network firewall policy rule-collection-group collection rule add command to add a DNAT rule to the Azure Firewall Policy that maps the port 80 of theAksName_HelmReleaseNamespace_ServiceName public IP address used by theAksName_HelmReleaseNamespace_ServiceName Azure Firewall IP configuration to the port 80 of the public IP address exposed by the redmine service on the Standard Load Balancer of the private AKS cluster (in a production environment you should use port 443 and HTTPS transport protocol instead of port 80 and unsecure HTTP transport protocol).
    • Uses theaz network route-table route show command to check if a user-defined route called exists in the Azure Route Table associated to the subnets hosting the node pools of the AKS cluster. If not, it creates a new user-defined route using theaz network route-table route create command thats routes the traffic from the public IP address namedAksName_HelmReleaseNamespace_ServiceName directly to internet. This route is more specific than the user-defined route with CIDR0.0.0.0/0 that routes the traffic from the subnets hosting AKS node pools to the private IP address of the Azure Firewall. This user-defined rule allows to properly send back response messages to the public IP address of the Azure Firewall Ip configuration used to expose the redmine Kubernetes service.
    • Uses theaz network dns record-set a list command to check if an A record exists with the given subdomain for the AKS-hosted web application. If not, the pipeline uses theaz network dns record-set a add-record command to an A record for the resolution of the service hostname to the public IP address of the Azure Firewall public IP.

Likewise, thedestroy-redmine-via-helm pipeline shows how you can undeploy a workload to a private AKS cluster using anAzure DevOps Pipelines that runs on aSelf-hosted Agent. The pipeline performs the following steps:

API Gateway

In a production environment where Azure Firewall is used to inspect, protect, and filter inbound internet traffic withAzure Firewall DNAT rules andThreat intelligence-based filtering, it's a good practice to use an API Gateway to expose web applications and REST APIs to the public internet.

Public Standard Load Balancer

Without an API gateway, client apps should send requests directly to the Kubernetes-hosted microservices and this would raises the following problems:

  • Coupling: client application are coupled to internal microservices. Refactoring internal microservices can cause breaking changes to the client apps. Introducing a level of indirection via an API Gateway between client apps and a SaaS application allows you to start breaking down the monolith and gradually replace subsystems with microservices without violating the contract with client apps.
  • Chattiness: if a single page/screen needs to retrieve data from multiple microservices, this can result into multiple calls to fine-grained microservices
  • Security issues: without an API Gateway, all the microservices are directly exposed to the public internet making the attack surface larger.
  • Cross-cutting concerns: Each publicly exposed microservice must implement concerns such as authentication, authorization, SSL termination, client rate limiting, response caching, etc.

When running applications on AKS, you can use one of the following API Gateways:

  • Reverse Proxy Server:Nginx,HAProxy, andTraefik are popular reverse proxy servers that support features such as load balancing, SSL termination, and layer 7 routing. They can run on dedicated virtual machines or as ingress controllers on a Kubernetes cluster.
  • Service Mesh Ingress Controller: If you are using a service mesh such asOpen Service Mesh,Linkerd, andIstio, consider the features that are provided by the ingress controller for that service mesh. For example, the Istio ingress controller supports layer 7 routing, HTTP redirects, retries, and other features.
  • Azure Application Gateway:Azure Application Gateway is a regional, fully-managed load balancing service that can perform layer-7 routing and SSL termination. It also provides a Web Access Firewall and aningress controller for Kubernetes. For more information, seeUse Application Gateway Ingress Controller (AGIC) with a multi-tenant Azure Kubernetes Service.
  • Azure Front Door:Azure Front Door is a global layer 7 load balancer that uses the Microsoft global edge network to create fast, secure, and widely scalable web applications. It supports features such as SSL termination, response caching, WAF at the edge, URL-based routing, rewrite and redirections, it support multiple routing methods such as priority routing and latency-based routing.
  • Azure API Management:API Management is a turnkey solution for publishing APIs to both external and internal customers. It provides features that are useful for managing a public-facing API, including rate limiting, IP restrictions, and authentication and authorization using Microsoft Entra ID or other identity providers.

Use Azure Firewall in front of an internal Standard Load Balancer

In this scenario, an ASP.NET Core application is hosted as a service by an Azure Kubernetes Service cluster and fronted by anNGINX ingress controller. The application code is available under thesource folder, while the Helm chart is available in thechart folder. TheNGINX ingress controller is exposed via an internal load balancer with a private IP address in the spoke virtual network that hosts the AKS cluster. For more information, seeCreate an ingress controller to an internal virtual network in Azure Kubernetes Service (AKS). When you deploy an NGINX ingress controller or more in general aLoadBalancer orClusterIP service with theservice.beta.kubernetes.io/azure-load-balancer-internal: "true" annotation in the metadata section, an internal standard load balancer calledkubernetes-internal gets created under the node resource group. For more information, seeUse an internal load balancer with Azure Kubernetes Service (AKS). As shown in the picture below, the test web application is exposed via the Azure Firewall using a dedicated Azure public IP.

Internal Standard Load Balancer

The message flow can be described as follows:

  1. A request for the AKS-hosted test web application is sent to a public IP exposed by the Azure Firewall via a public IP configuration. Both the public IP and public IP configuration are dedicated to this workload.
  2. AnAzure Firewall DNAT rule is used to to translate the Azure Firewall public IP address and port to the private IP address and port used by the NGINX ingress conroller in the internal Standard Load Balancer of the AKS cluster in the node resource group.
  3. The request is sent by the internal load balancer to one of the Kubernetes service pods running on one of the agent nodes of the AKS cluster.
  4. The response message is sent back to the original caller via a user-defined with0.0.0.0/0 as address prefix and virtual appliance as next hope type.
  5. Any workload-initiated outbound call is routed to the private IP address of the user-defined route.

Theci-test-web-app pipeline performs the following steps:

  • Uses theaz acr login command to login to Azure Container Registry through the Docker CLI.
  • Usesdocker build anddocker push commands to build and publish the container image to Azure Container Registry.
  • Useshelm registry login to login to Azure Container Registry via Helm
  • Useshelm push command to push the Helm chart as anOpen Container Initiative (OCI) artifact.

Thecd-test-web-app pipeline performs the following steps:

  • TheHelm Installer task installsHelm on theSelf-hosted Agent: this step is not necessary ifHelm is already installed on the agent
  • TheKubectl Installer taks installskubectl on the self-hosted agent: even this step is not necessary ifkubectl is already installed on the agent
  • Uses theAzure CLI task to run the following steps:
    • Gets the AKS cluster credentials using theaz aks get-credentials command
    • Uses theHelm CLI to add the repo for the Bitnamiredmine project management web application
    • UsesHelm CLI to check if the Helm chart is already deployed:
      • If yes, it upgrades the current release.
      • If not, it installs a new release.
    • Deploys thecert-manager via Helm chart. Cert-manager adds certificates and certificate issuers as resource types in Kubernetes clusters, and simplifies the process of obtaining, renewing and using those certificates. In this sample, cert-manager issues a certificate fromLet's Encrypt used by the NGINX ingress controller for SSL termination.
    • Deploys theNGINX ingress controller via Helm chart. TheNGINX ingress controller is exposed via an internal load balancer with a private IP address in the spoke virtual network that hosts the AKS cluster. For more information, seeCreate an ingress controller to an internal virtual network in Azure Kubernetes Service (AKS). When you deploy an NGINX ingress controller or more in general aLoadBalancer orClusterIP service with theservice.beta.kubernetes.io/azure-load-balancer-internal: "true" annotation in the metadata section, an internal standard load balancer calledkubernetes-internal gets created under the node resource group. For more information, seeUse an internal load balancer with Azure Kubernetes Service (AKS).
    • Useskubectl to retrieve the external, private IP of the NGINX ingress controller.
    • Uses theaz network public-ip show to check if an Azure Public IP resource calledAksName_HelmReleaseNamespace_ServiceName already exists in a give resource group.
      • If yes, it retrieves its public IP address.
      • If not, it creates a new Azure Public IP resource using theaz network public-ip create and retrieves its public IP address.
    • Uses theaz network firewall ip-config show command to check if an Azure Firewall IP configuration namedAksName_HelmReleaseNamespace_ServiceName already exists. If not, it creates a new Azure Firewall IP configuration using theaz network firewall ip-config create command.
    • Uses theaz network firewall policy rule-collection-group collection list command to check if a DNAT rule collection namedDnatRules already exists in the Azure Firewall Policy. If not, it creates a new a DNAT rule collection namedDnatRules under theDefaultDnatRuleCollectionGroup rule collection group using theaz network firewall policy rule-collection-group collection add-filter-collection command.
    • Uses theaz network firewall policy rule-collection-group collection rule add command to add a DNAT rule to the Azure Firewall Policy that maps the port 80 of theAksName_HelmReleaseNamespace_ServiceName public IP address used by theAksName_HelmReleaseNamespace_ServiceName Azure Firewall IP configuration to the port 80 of the private IP address exposed by the NGINX ingress controller on the Internal Load Balancer of the private AKS cluster. This rule is necessary to let Let's Encrypt to check that your are the owner of the domain specified in the ingress of your service when the cert-manager issues a certificate for SSL termination.
    • Uses theaz network firewall policy rule-collection-group collection rule add command to add a DNAT rule to the Azure Firewall Policy that maps the port 443 of theAksName_HelmReleaseNamespace_ServiceName public IP address used by theAksName_HelmReleaseNamespace_ServiceName Azure Firewall IP configuration to the port 443 of the private IP address exposed by the NGINX ingress controller on the Internal Load Balancer of the private AKS cluster. This rule is used to translate and send incoming requests to the NGINX ingress controller.
    • Uses theaz network dns record-set a list command to check if an A record exists with the given subdomain for the AKS-hosted web application. If not, the pipeline uses theaz network dns record-set a add-record command to an A record for the resolution of the service hostname to the public IP address of the Azure Firewall public IP.

Considerations

In a production environment, the endpoints publicly exposed by Kubernetes services running in a private AKS cluster should be exposed using an ingress controller such asNGINX Ingress Controller orApplication Gateway Ingress Controller that provides advanced functionalities such as path based routing, load balancing, SSL termination, and web access firewall. For more information, see the following articles:

Azure Kubernetes Service

Azure Application Gateway

Azure Application Gateway Ingress Controller

NGINX Ingress Controller

Azure Application Gateway WAF

Related resources

Architectural guidance

Reference architectures

Visio

In thevisio folder you can find the Visio document which contains the above diagrams.

Test access to your private AKS cluster

If you open an ssh session to the Linux virtual machine via Azure Bastion and manually run thenslookup command using the fully-qualified name (FQDN) of the API server as a parameter, you should see an output like the the following:

Architecture

NOTE: the Terraform module runs anAzure Custom Script Extension that installed thekubectl andAzure CLI on the jumpbox virtual machine.

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp