Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 940 Bytes

readme.md

File metadata and controls

24 lines (17 loc) · 940 Bytes

Pulumi AKS Typescript

This repo contains a walkthrough for getting started with Pulumi on Azure, creating a Kubernetes cluster (aka AKS) utilizing TypeScript.

Pulumi is a Infrastructure As Code Framework, that allows to build, deploy and manage modern cloud applications and infrastructure using familiar languages.

Prerequisites

Deploy stack

  • pulumi login
  • cd infra && pulumi up

Connect to k8s

  • pulumi stack output kubeconfig --show-secrets > kubeconfig.yaml
  • export KUBECONFIG=./kubeconfig.yaml

Destroy stack

  • pulumi destroy