smorenburg / learning-friday-getting-started-with-aks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Learning Friday: Getting started with AKS

Documentation

Deploying the resources

Connect to Azure and set the context.

Connect-AzAccount
Set-AzContext <subscriptionId>

Create the storage account for the Terraform state.

./scripts/Create-StorageAccount.ps1

Modify the Terraform backend configuration to use the storage account.

Deploy the resources.

cd terraform
terraform apply

Connect to the cluster.

Deploy the Azure Voting App.

cd ../kubernetes/terraform
kubectl apply -f azure-vote-all-in-one-redis.yaml

Explore the deployed Kubernetes resources and the application.

Destroy the resources when finished to minimize the expenses.

cd ../terraform
terraform destroy

About

License:GNU General Public License v3.0


Languages

Language:HCL 90.3%Language:PowerShell 9.7%