A tool for running BOSH 101 classrooms.
-
Load credentials for your AWS environment
export AWS_DEFAULT_REGION=us-east-1 # this can be any region that has a BOSH-lite AMI export AWS_ACCESS_KEY_ID=YOUR-ACCESS-KEY export AWS_SECRET_ACCESS_KEY=YOUR-SECRET-KEY
-
Create a new classroom
proctor create -name my-classroom -number 3
This will spin up 3 EC2 instances in your AWS account.
-
Watch your classroom get created
proctor describe -name my-classroom
The SSH key was generated at
create
time and is world-readable. -
Run a command on all VMs
proctor run -name my-classroom -c 'bosh status'
-
Destroy your classroom
proctor destroy -name my-classroom