Azure Kubernetes Service (AKS) cluster using the native Azure provider
A minimal Azure AKS TypeScript Pulumi program
This example lives in the pulumi/examples repository. Check out just this directory to use it:
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examplesgit -C pulumi-examples sparse-checkout set azure-ts-akscd pulumi-examples/azure-ts-aksThis example deploys an AKS cluster, creates an Azure Active AD application, creates a Service Principal and sets credentials to manage access to the cluster.
Prerequisites#
Deploying the example#
After cloning this repo, from this working directory, run these commands.
-
Create a new stack, which is an isolated deployment target for this example:
Terminal window pulumi stack init dev -
Set the Azure region to deploy into:
Terminal window pulumi config set azure-native:location westus2 -
Install dependencies:
Terminal window npm install -
Stand up the cluster with
pulumi up:Terminal window pulumi up -
After 3-4 minutes, your cluster will be ready, and the kubeconfig YAML you’ll use to connect to the cluster will be available as an output. Save this kubeconfig to a file:
Terminal window pulumi stack output kubeconfig --show-secrets > kubeconfig.yamlOnce you have this file in hand, you can interact with your new cluster as usual via
kubectl:Terminal window KUBECONFIG=./kubeconfig.yaml kubectl get nodes -
From there, feel free to experiment. Simply making edits and running
pulumi upwill incrementally update your stack.
Cleaning up#
Once you’ve finished experimenting, tear down your stack’s resources by destroying and removing it:
pulumi destroypulumi stack rm