Skip to content
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

Update existing VMs in virt.running #48736

Merged
merged 6 commits into from
Jul 27, 2018
Merged

Commits on Jul 27, 2018

  1. Add virt.pool_info test case with no target element

    The target element is not mandatory, introduce a test that we properly
    handle this situation
    cbosdo committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    a3ccf81 View commit details
    Browse the repository at this point in the history
  2. Remove minidom use in virt module

    ElementTree provides a more convenient API than minidom. Switching to
    ElementTree will reduce the number of dependencies for the virt module
    and simplify the code a little.
    cbosdo committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    0f5184c View commit details
    Browse the repository at this point in the history
  3. virt.init: allow 'none' graphics type

    Graphics type 'none' will help to distinguish between no graphics data
    and removal of graphics device in a future virt.update function.
    cbosdo committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    a041039 View commit details
    Browse the repository at this point in the history
  4. Add virt.update function

    User need to be able to update an existing virtual machine definition.
    This function changes the definition for the next start of the VM and
    tries hard to live update the virtual machine.
    cbosdo committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    333d149 View commit details
    Browse the repository at this point in the history
  5. Updating running domains in virt.running

    So far virt.running does nothing if the corresponding domain is already
    defined. Use the new virt.update function to change the domain
    configuration.
    cbosdo committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    2a5f6ae View commit details
    Browse the repository at this point in the history
  6. Rename states/test_libvirt.py into states/test_virt.py

    Modules test files are named after the module itself, the state virt
    module needs to comply with that rule too.
    cbosdo committed Jul 27, 2018
    Configuration menu
    Copy the full SHA
    8f3f593 View commit details
    Browse the repository at this point in the history