Last active
May 8, 2018 22:33
-
-
Save chrisns/3619057803e44220ff9d101d0d13f348 to your computer and use it in GitHub Desktop.
Install k8s and everything we need for a workshop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
choco install -y atom | |
choco install -y bash --source cygwin | |
choco install -y curl | |
choco install -y docker | |
choco install -y docker-machine | |
choco install -y firefox | |
choco install -y git | |
choco install -y googlechrome | |
choco install -y kubernetes-cli | |
choco install -y minikube | |
choco install -y nodejs | |
choco install -y notepadplusplus | |
choco install -y openssh | |
choco install -y putty | |
choco install -y sublimetext2 | |
choco install -y vagrant | |
choco install -y vim | |
choco install -y virtualbox | |
choco install -y wget | |
minikube start | |
minikube stop | |
docker-machine create -d virtualbox default | |
& "C:\ProgramData\chocolatey\lib\docker-machine\bin\docker-machine.exe" env | Invoke-Expression | |
docker ps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment