Extending the Vagrant Setup
If you have followed the guide to getting Vagrant set up locally, you might be interested in other things you can do with it. There are some steps that you may need to take in order to make the setup a bit more functional.
Running Tests with Vagrant
If you are developing on Tinkerbell, it might be handy to know that the Vagrant setup serves as the backbone of some of the end-to-end testing. The scripts that set up and run the tests are in the tink
repository, in the test/_vagrant
directory.
The requirements for the tests are the same as the Vagrant setup itself, along with Go installed on your local machine.
To run the tests, run the go test
command, pointed at the test/_vagrant
directory.
go test ./test/_vagrant/...
Reusing osie.tar.gz
While playing with Tinkerbell locally, it becomes a pain to download osie.tar.gz
as part of the provisioner setup each time you recreate the stack.
However, we can skip the download and resuse existing osie.tar.gz
by setting the TB_OSIE_TAR
environment variable.
Check setup.sh for reference.
Download Osie before starting the setup
curl https://tinkerbell-oss.s3.amazonaws.com/osie-uploads/latest.tar.gz -o osie.tar.gz
Move the downloaded file to tink/deploy/vagrant/
.
Now, set the environment variable in tink/deploy/vagrant/scripts/tinkerbell.sh
before it executes setup.sh
.
...
export TB_OSIE_TAR='/vagrant/deploy/vagrant/osie.tar.gz'
./setup.sh
...
Start the vagrant setup.