Skip to content

Instantly share code, notes, and snippets.

@tnolet
Last active October 3, 2017 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnolet/d33b2f37c7800685f031d7b8eb9ce6d2 to your computer and use it in GitHub Desktop.
Save tnolet/d33b2f37c7800685f031d7b8eb9ce6d2 to your computer and use it in GitHub Desktop.
Install Kubernetes on Azure Container Service
# Setup Azure Container Service with Kubernetes
az group create --name myVampResourceGroup --location westeurope
az acs create --orchestrator-type kubernetes --resource-group myVampResourceGroup --name myVampK8SCluster --generate-ssh-keys
az acs kubernetes install-cli
az acs kubernetes get-credentials --resource-group myVampResourceGroup --name myVampK8SCluster
# Install Vamp
curl -s https://raw.githubusercontent.com/magneticio/vamp.io/master/static/res/v0.9.5/vamp_kube_quickstart.sh | bash
kubectl proxy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment