mishrsud / ms-open-hack

Microsoft's Open hack on Container workloads on Azure - Kubernetes and Azure Kubernetes Service (AKS)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Summary

This repo contains the challenges and my solution during the Microsoft Open Hack on Containers held at Sydney during 18 - 20 June.

References and resources

  1. Kelsey Hightower's highly acclaimed book: Kubernetes up and running
  2. Getting Kubernetes: Git Repo
  3. Get the Azure CLI 2.0 HERE
  4. Kubernetes Concepts docs

Basic cluster

(Requires Azure CLI and kubectl)

# Create a cluster
az aks create -n minecraft-readify -g rg-minecraftTable15 --node-count 1 --generate-ssh-keys

# Get credentials for the cluster
az aks get-credentials --resource-group rg-minecraftTable15 --name minecraft-readify

# Browse the cluster
az aks browse --resource-group rg-minecraftTable15 --name minecraft-readify

About

Microsoft's Open hack on Container workloads on Azure - Kubernetes and Azure Kubernetes Service (AKS)


Languages

Language:C# 100.0%