Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 1.82 KB

WorkshopPrep.md

File metadata and controls

22 lines (20 loc) · 1.82 KB

Prepare workshop

Create Resources

  1. Create a dedicated Service Principal for AKS
  2. Create Resource Group for AKS API Server
  3. Assign Contributor Permissions to SP for API Server Resource Group + Add all Workshop participants as Contributor to the Resource Group
  4. Create Azure Container Registry in the API Server Resource group - if not make sure that the AKS Service Principal has at least "Reader" permissions to the container registry.
  5. Create the AKS Cluster
  6. [Install kubectl, get kubeconfig and connect to the cluster] (https://docs.microsoft.com/en-us/azure/aks/tutorial-kubernetes-deploy-cluster#create-kubernetes-cluster)
  7. Deploy azure container health
  8. Get the kubeconfig from ~/.kube/config and share it with the group

Prep for each participant

  1. Install the azure cli
  2. Install VSCode
  3. Install kubectl
  4. Copy the kubeconfig file to ~/.kube/config (Mac or Linux) or to %HOMEPATH%\.kube\config (Windows)
  5. If you are running behind a proxy server make sure that you have set the HTTP_PROXYand HTTPS_PROXY environment variables according to your local proxy configuration.
export http_proxy="http://proxy.example.com:80/"
export https_proxy="https://proxy.example.com:443/"