-
Notifications
You must be signed in to change notification settings - Fork 95
Use clean VM snapshot for testing
Amos Kong edited this page Mar 13, 2017
·
2 revisions
Currently we access the disk with write mode, so tests will change the VM disk every time. If the job fails during the testing, there maybe some uncertain condition.
We wish to use a clean environment (VM disk) for some test. Some basic requests:
- no scylla installed
- no scylla repo exists
-
clean VM as request
-
stop VM
sudo virsh destroy --graceful
- create an internal (inside old image file) snapshot for original image
sudo virsh snapshot-create-as --domain debian8 --name debian8-orig
- revert to this snapshot before each tests
sudo virsh snapshot-revert --domain debian8 --snapshotname debian8-orig
sudo virsh start debian8
Branches that we keep sending backports from master
- branch-4.0
- branch-4.1
- branch-2019.1
- branch-perf-v9
- manager-2.1
Branches that we are sending critical backports from master only
- branch-3.3
- branch-2019.1
- manager-2.0
a branch that we still have jobs for, and using, but can't get backports from master anymore
- manager-v1.2
- manager-v1.3
- manager-v1.3.1
- manager-v1.4
Older unused branches will be deleted on a regular basis.