Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 524 Bytes

File metadata and controls

23 lines (17 loc) · 524 Bytes

Intro

This is a demo repo for performing webinars and demos for Infrastructure as code (on Azure platform). Find below deployment instructions

Deployment

Deploy kubernetes cluster via Terraform. Stand in the repo root directory

pushd tf
terraform apply -auto-approve
terraform output kube_config > ../KUBECONFIG
popd

Deploy a wordpress application (app + DB tiers) via yaml files

export KUBECONFIG=$PWD/KUBECONFIG
kubectl get node
helm init
helm install stable/wordpress -f k8s/values.yaml