minikube/iso
dlorenc a8b12f7d78 Switch to using a versioned ISO url. 2016-05-25 08:43:13 -07:00
..
.gitignore Add newlines. 2016-05-08 15:51:17 -07:00
Dockerfile Check boilerplate in all files. 2016-05-24 21:57:16 -07:00
Dockerfile.ethtool Add ethtool to the built image. 2016-05-14 19:03:04 -07:00
Dockerfile.socat This statically compiles socat so it actually works in our iso. 2016-05-14 11:13:12 -07:00
README.md Switch to using a versioned ISO url. 2016-05-25 08:43:13 -07:00
build.sh Check boilerplate in all files. 2016-05-24 21:57:16 -07:00

README.md

Scripts for building a VM iso based on boot2docker

Build instructions

./build.sh

Test instructions

To manually try out the built iso, you can run the following commands to create a VM:

VBoxManage createvm --name testminikube --ostype "Linux_64" --register
VBoxManage storagectl foo --name "IDE Controller" --add ide
VBoxManage storageattach foo --storagectl "IDE Controller" --port 0 --device 0 --type dvddrive --medium ./minikube.iso
VBoxManage modifyvm foo --memory 1024 --vrde on --vrdeaddress 127.0.0.1 --vrdeport 3390 --vrdeauthtype null

Then use the VirtualBox gui to start and open a session.

Release instructions

  • Build an iso following the above build instructions.
  • Test the iso with --iso-url=file:///$PATHTOISO.
  • Push the new iso to GCS, with a new name (minikube-0x.iso) with a command like this: gsutil cp $PATHTOISO gs://$BUCKET
  • Update the default URL in start.go.