For testing and experimentation with k3os in your local environment. Quickly spin up k3os virtual machines using Vagrant and Virtualbox
k3os is a purpose built OS for Kubernetes, fully managed by Kubernetes. It is developed by Rancher Labs and the open source community.
Use the prebuit image provided through Vagrant Cloud by running from the root of this repo (should use the included Vagrantfile
)
vagrant up
Then:
vagrant ssh
- Build vagrant box image using Packer:
cd packer
packer build vagrant.json
- Import vagrant box image into your local Vagrant install:
vagrant box add packer_virtualbox-iso_virtualbox.box --name k3os
- Edit the provided
Vagrantfile
in the root of this repo to reference the name of your image (in this examplek3os
)
config.vm.box = "k3os"
- From the repo root (might need to
cd ../
) run:
vagrant up
You can then login to the box using vagrant ssh
. See Vagrant Docs for more details on how to use Vagrant
Folder sync currently not supported. You can also create your own Vagrantfile
just note the addition of
config.vm.guest = "linux"
to tell it Vagrant which OS to expect and
config.vm.synced_folder ".", "/vagrant", disabled: true
to disable folder syncing
Send me an email or find me on the Rancher community slack, my username is william