Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,17 @@ export OS_PASSWORD="openstack-password"
export OS_VM_NAME="openstack-export-test-vm-name"
export OS_REGION_NAME="openstack-region"
export KUBECONFIG="kubeconfig-for-harvester-cluster"
```
```

You'll need to be sure to `source .env`.
If you're not sure about the values needed for `.env` in regards to OpenStack you can cross ref the `*-openrc.sh` file.
Also currently, you will need to also create the [qemu-wrapper.sh](https://github.com/harvester/vm-import-controller/blob/main/package/qemu-wrapper.sh) file locally and add it to your path.
Something like:
```bash
wget https://raw.githubusercontent.com/harvester/vm-import-controller/main/package/qemu-wrapper.sh -O ~/.local/bin/
chmod +x ~/.local/bin/qemu-wrapper.sh
source ~/.zshrc
source .env
which qemu-wrapper.sh
```
To ensure it's present and in the path for the integration tests.