Skip to content

doc: Update README With Integration Testing Info #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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.