/airship-dev-tools

Set of internal tools for Airship and metal3 development

Primary LanguageShellApache License 2.0Apache-2.0

airship-dev-tools

Set of internal tools for Airship and metal3 development

Setup

make setup-local-repos

Update the nordix master branches

make update-remote-repos

Run the metal3 dev env

First, make sure that hardware virtualization is enabled, then you need to source your Openstack credentials

source openstack.rc

Then run

make run-dev-env

If the IP address of the newly created virtual machine is not shown, then run the following

virsh net-dhcp-leases default

ssh into the machine with the airshipci user

ssh airshipci@VM_IP

When running make as described below, if you hit an issue about the default network, saying that it is already in use by ens2, you need to modify the file /etc/libvirt/qemu/networks/default.xml to change the CIDR to not use the same CIDR as ens2 or any other interface. Then run

sudo virsh net-define /etc/libvirt/qemu/networks/default.xml
sudo virsh net-start default

Then you can set up the environment :

git clone https://github.com/metal3-io/metal3-dev-env.git
export CONTAINER_RUNTIME=docker
cd metal3-dev-env
make

Alternative way to run a development container

make workspace

Running the tests

All the following actions take place in the container. Otherwise check you have installed everything properly (go 1.12, bazel, operator-sdk etc.)

If you want to run the metal3 tests, you first need to fetch the dependencies.

dep ensure

Then for all repositories :

make test

Ways of working

Useful links