# Post Provisioning This section walks us through steps that need to get performed after the cluster has been provisioned. These steps can easily be automated as part of a pipeline, but are explicitly pulled out here for visibility. ## Test Post Configuration This is a quick test to make sure that Pods can be created and the Ingress Controller default backend is setup correctly. * First we need to grab AKS cluster credentials so we can access the api-server endpoint and run some commands. * Second we will do a quick check via get nodes. * Lastly, we will spin up a Pod, exec into it, and test our F/W rules. ```bash # List out AKS Cluster(s) in a Table az aks list -o table # Get Cluster Admin Credentials az aks get-credentials -g $RG -n $PREFIX-aks --admin # Check Nodes kubectl get nodes # Test via a Pod cat <