Menü Schließen

oVirt Release Kandidat 4.2.1

oVirt Logo

Die Open-Source Virtualisierungslösung oVirt, wurde in der Version 4.2.1 freigegeben. oVirt selbst ist eine Alternative für VMWare und vSphere und ermöglicht das Managment von KVM Virtualisierung in Multi-Node-Umgebungen.

oVirt 4.2.1 Release Notes

Quelle: https://www.ovirt.org/release/4.2.1/

What’s New in 4.2.1?

Release Note

oVirt Engine

  • BZ 1515635 [RFE] Drop uuid_generate_v1() internal implementation and use the implementation from standard PostgreSQL uuid-ossp extension
    We have added a requirement for uuid-ossp PostgreSQL extension to be present in engine database. For databases managed by engine-setup this is performed automatically, but non-managed databases (usually remote databases) this needs to be done manually by administrators.

    Here are required additional steps:

    New installation:
    1. Requirement to install rh-postgresql95-postgresql-contrib package
    on remote database host
    2. Once database is created administrators need to add uuid-ossp extension
    to it using:
    su – postgres -c “scl enable rh-postgresql95 – psql -d engine”
    postgres=# CREATE EXTENSION “uuid-ossp”;

    Upgrade:
    1. Requirement to install rh-postgresql95-postgresql-contrib package
    on remote database host
    2. Once database is upgraded to 9.5 administrators need to remove our custom implementation and add uuid-ossp extension
    to it using:
    su – postgres -c “scl enable rh-postgresql95 – psql -d engine”
    postgres=# DROP FUNCTION IF EXISTS uuid_generate_v1();
    postgres=# CREATE EXTENSION “uuid-ossp”;

    In both above example “engine” specified using “-d” option is the name of engine database

Enhancements

oVirt Engine Metrics

  • BZ 1523068 [RFE] Add fluentd file output plugin support for quick and easy debugging
    Feature:
    Add fluentd file output plugin support for quick and easy debugging

    Reason:
    Sometimes we want to debug the metrics without setting a remote metrics store.

    Result:
    Added a “file” output plugin support to the ovirt-engine-metrics setup.
    Metrics will be sent to a local file.

oVirt Host Dependencies

  • BZ 1425032 [RFE] Include katello agent in RHV-H NG
    Feature: Katello Agent is now installed on RHV hosts during deployment and is included in RHV-H image

    Reason: to better integrate with Satellite. Katello Agent provides the list of the installed rpms.

    Result: katello-agent is installed and working on RHV / RHV-H Hosts

OTOPI

  • BZ 1396925 [RFE] restructure answer-file behavior
    otopi can now optionally write its own answer files, which are simpler to understand, compared to tool-specific files written by existing tools that use otopi. Also functionality is different, imitating more closely the behavior without an answer file and answers provided interactively.

oVirt Engine

  • BZ 1510578 [RFE][hc][dalton] – Set up cgroup for gluster processes in HC mode from the engine
    Feature: Restrict the CPU resources consumed by gluster processes

    Reason: When running in hyperconverged mode, gluster processes should co-exist with virt processes and not consume all available resources

    Result: Hyperconverged mode works as expected

  • BZ 1511823 [RFE] Automatically synchronize networks of cluster with default network provider
    Feature:
    Add a new boolean property to external network providers is added.
    If true, the networks of this provider are automatically and cyclically synchronized to oVirt in the background. This means that all new networks of this provider are imported, and all discarded networks are removed from all clusters that have this external provider as the default provider.

    The automatically initiated import triggers the following steps:

    – The networks of the external provider will be imported to every data center in the data centers of the clusters that have that external provider as the default provider.

    – A vNIC profile will be created for each involved data center and network.

    – The networks will be assigned to each cluster that has that external provider as the default provider.

    All users are allowed to use the new vNIC Profile.

    Reason:
    – Support the user to use only external networks for VMs, which are still available
    on the external provider.
    – Make new networks of the external network provider available more comfortable.

    Result:
    After the user has enabled the new boolean property, e.g. during creating the external provider, the networks of the external provider are available to be used for VMs without manually importing them.

  • BZ 1530730 [downstream clone – 4.2.1] [RFE] Allow uploading ISO images to data domains and using them in VMs
    It is now possible to upload an ISO file to a data domain and attach it to a VM as a CDROM device.
    In order to do so the user has to upload an ISO file via the UI (which will recognize the ISO by it’s header and will upload it as ISO) or via the APIs in which case the request should define the disk container “content_type” property as “iso” before the upload.
    Once the ISO exists on an active storage domain in the data center it will be possible to attach it to a VM as a CDROM device either through the “Edit VM” dialog or through the APIs (see example in comment #27
  • BZ 1330217 [RFE] Enable configuring IPv6 in VM cloud-init
    Cloud-Init supports IPv6 properties for initializing a virtual machine’s network interfaces.
  • BZ 1517832 [RFE] make VM names in host details clickable
    Feature: Clicking on the VM name in the VM detail view of the hosts, will take you directly to the VM detail view. This allows you to see more details of that VM and make changes easier.

    Reason: Navigating between hosts and their associated VMs was difficult. This change allows the user to quickly switch selected entities.

    Result: The names of the VMs in the VM grid of the host detail view now contains a link to the VM detail view.

  • BZ 1049604 [RFE] Allow uploading a pre-existing VM image (OVA) into the environment
    Feature:
    Enable uploading an OVA into an oVirt data center.

    Reason:
    Simplify the process of importing a virtual machine that was created out of the data center.

    Result:
    It is now possible to import an OVA that is accessible to at least of the hosts in the data center into a virtual machine in oVirt.

  • BZ 1528960 Add ability to change maximum timeout for Ansible process executed from engine to finish
    The default timeout for Ansible process executed from engine has been enlarged to 30 minutes, because especially upgrading hosts can take significant amount of time. If Ansible process doesn’t finish until this timeout, engine will kill the Ansible process and fail the action.

    If even default 30 minutes timeout is not enough, administrators can further enlarge it by creating a new configuration file in /etc/ovirt-engine/engine.conf.d (for example 99-ansible-playbook-timeout.conf) with following content:

    ANSIBLE_PLAYBOOK_EXEC_DEFAULT_TIMEOUT=NNN

    where NNN is number minutes which engine should wait for Ansible process to finish.

VDSM

  • BZ 1334982 [RFE] Gracefully shutdown Virtual Machines on Host reboot/shutdown.
    Previously, in cases of emergency, users were required to shut down the hosts to preserve the data center. This caused running virtual machines to be killed by the systemd process without performing a graceful shutdown. As a result, the virtual machine’s state became undefined which led to problematic scenarios for virtual machines running databases such as Oracle and SAP.
    In this release, virtual machines can be gracefully shut down by delaying the systemd process. Only after the virtual machines are shut down, does the systemd process take control and continue the shut down. The VDSM is only shut down after the virtual machines have been gracefully shut down, after passing information to the Manager and waiting 5 seconds for the Manager to acknowledge the virtual machines have been shut down.
  • BZ 1530730 [downstream clone – 4.2.1] [RFE] Allow uploading ISO images to data domains and using them in VMs
    It is now possible to upload an ISO file to a data domain and attach it to a VM as a CDROM device.
    In order to do so the user has to upload an ISO file via the UI (which will recognize the ISO by it’s header and will upload it as ISO) or via the APIs in which case the request should define the disk container “content_type” property as “iso” before the upload.
    Once the ISO exists on an active storage domain in the data center it will be possible to attach it to a VM as a CDROM device either through the “Edit VM” dialog or through the APIs (see example in comment #27
  • BZ 1429536 [RFE] Rebase on gluster-3.12
    Feature: oVirt to use the latest released version of glusterfs – 3.12

    Reason: GlusterFS 3.12 has many fixes and enhancements that improve experience for oVirt users

  • BZ 1511234 [RFE] Hook for booting from Passthrough Devices
    New vdsm hook boot_hostdev has been added. It allows Virtual Machines to boot from passed through host devices such as NIC VFs, PCI-E SAS/RAID Cards, SCSI devices etc. without requiring a normal bootable disk from RHV SD/Direct LUN

oVirt Engine SDK 4 Python

  • BZ 1049604 [RFE] Allow uploading a pre-existing VM image (OVA) into the environment
    Feature:
    Enable uploading an OVA into an oVirt data center.

    Reason:
    Simplify the process of importing a virtual machine that was created out of the data center.

    Result:
    It is now possible to import an OVA that is accessible to at least of the hosts in the data center into a virtual machine in oVirt.

Known Issue

oVirt Engine

  • BZ 1523614 Copy image to a block storage destination does not work after disk extension in a snapshot in DC pre-4.0
    Cause:
    qemu-img convert with compat=0.10 and a backing file writes
    the space after the backing file as zeroes which may cause the output disk be larger than the LV created for it

    Consequence:
    Moving a disk that has snapshot created prior to its extension will fail in storage domains with a version older than V4 (i.e., domains in DC 4.0 or older)

    Fix:
    The move operation of a disk with snapshots created prior to its extension will be blocked with an error message stating the deletion of the disk’s snapshot is required before attempting to move it, instead of attempting to execute the copying and waiting for it to fail.

    Result:

Bug Fixes

oVirt Hosted Engine Setup

  • BZ 1536941 HE-VM cloudinit root password saved in the setup log file as clear text.

oVirt Engine

  • BZ 1525353 vNIC mapping is broken on import from data domain – vNICs mapped as ‘Empty’ in the destination cluster
  • BZ 1528906 Engine requires to set a gateway in order to sync a network
  • BZ 1517492 Create VM with new created quota fails.
  • BZ 1529255 Can’t import VMware OVA folder with EngineException: Failed to query OVA info
  • BZ 1529262 OVN provider password added by engine-setup must be encrypted
  • BZ 1492838 Engine database upgrade: take care of zero ‘vm_snapshot_id’ fields
  • BZ 1529965 OVA import: querying OVA file from import dialog failed with NullPointerException
  • BZ 1530261 unable to boot vm with libgfapi in 4.2
  • BZ 1529607 NPE when exporting disk with no description to OVA
  • BZ 1529292 uploaded image alignment should be validated

VDSM

  • BZ 1532151 cannot run vm after upgrade to 4.2-beta – AttributeError: ‘Element’ object has no attribute ‘_elem’
  • BZ 1533762 Failed to hotplug a vNIC with Empty network
  • BZ 1432039 lvchange –refresh generates unneeded load on lvm
  • BZ 1527416 Wrong state returned in VM getStats when actual state changes in the middle
  • BZ 1518676 Entire vdsm process hang during when formatting xlease volume on NFS storage domain
  • BZ 1526133 [SR-IOV] hot-plug of vNIC on running VM fails with VDSErrorException
  • BZ 1523152 [downstream clone – 4.2.1] Guest LVs created on raw volumes are auto activated on the hypervisor with FC storage (lvm filter?)
  • BZ 1532133 Preallocated volume convert to sparse volume after live storage migration to file based storage domain
  • BZ 1530072 Vdsm can get into D state when checking disk type on non-responsive NFS server

imgbased

  • BZ 1493176 RHVH stuck on startup after ‘probing EDD… ok’ step
  • BZ 1535791 Upgrading node brings back previous hosted-engine configuration
  • BZ 1533871 the /boot partition grows after each update until it’s at 100% causing boot loop.

Other

oVirt Engine Metrics

  • BZ 1529295 [RFE] – Add root file system disk space statistics for the engine
  • BZ 1506178 Multiple minor issues with help of configure_metrics script
  • BZ 1534240 Old VDSM still send hosts statistics and fluentd should filter them out
  • BZ 1532196 [RFE] Add ovirt.engine_fqdn to hosts logs

oVirt Engine Dashboard

  • BZ 1358604 CPU/Memory/Storage tooltip text should be improved
  • BZ 1402007 Dashboard: Over commit: XX% (allocated XX%) parameters are not clear
  • BZ 1489433 Dashboard utilization circle doesn’t show up when 0 out of 0 is used
  • BZ 1526258 [CodeChange][i18n] oVirt 4.2 translation cycle 1, part 2

oVirt Hosted Engine HA

  • BZ 1527394 [HE] – SHE ha-host’s score is unstable and hosted-engine.conf is not equal on both ha-hosts.

oVirt Hosted Engine Setup

  • BZ 1527394 [HE] – SHE ha-host’s score is unstable and hosted-engine.conf is not equal on both ha-hosts.
  • BZ 1353713 [RFE] – Hosted Engine: iSCSI Setup Should use different User/Password For Discovery and Portal
  • BZ 1537630 Hosted engine VM cannot be edited using the UI, because it has priority 0
  • BZ 1537153 iSCSI deployment of node zero fails with “‘ansible.errors.AnsibleUndefinedVariable’>\nexception: ‘int object’ has no attribute ‘split'”}”.
  • BZ 1532213 [HE] in deploy of Hosted Engine with ansible we should remove the otopi question “generate on-fly a cloud-init ISO image…” since its not supported.
  • BZ 1529941 missing ‘–config-append’ option in help and man
  • BZ 1530125 AnsibleHelper is consuming too much cpu time
  • BZ 1526752 HE setup: Don’t use /var/tmp/localvm but a temp dir.

OTOPI

  • BZ 1529474 config-append failed to resolve path that start with ~/

oVirt Release Package

  • BZ 1516123 tuned-adm timeout while adding the host in manager and the deployment will fail/take time to complete
  • BZ 1526850 brand is missing on cockpit login screen.

oVirt Engine

  • BZ 1528292 Recursion in HostDeviceManager and other services prevents engine to startup successfully
  • BZ 1531995 [UI] Unable to set a vNIC profile on network interface window
  • BZ 1532013 New/Edit network – Labels drop down list is gone
  • BZ 1532046 ovn localnet: attachment of ovn network to data center network is not saved
  • BZ 1526815 Backup restore API: Transient volume is not created on compatibility version-4.2 after backup VM start with snapshot disk from source VM attached
  • BZ 1519811 On upgrade from RHEV-3.6 to RHV-4, max_memory_size_mb seems hardly set to 1TB
  • BZ 1525374 EngineException: Failed to GetLldpVDS, error = The method does not exist / is not available when running a 3.6 host in rhv 4.2 engine
  • BZ 1526260 Previewing snapshot for VM A actually snapshots disks of VM B, both get broken.
  • BZ 1493914 ISCSI targets results in duplicate connections with incorrect node.tpgt values.
  • BZ 1518509 Numa aware ksm state in file /sys/kernel/mm/ksm/merge_across_nodes always remains 1
  • BZ 1523297 Engine fails to create OVN subnet
  • BZ 1484199 Device.map can’t be updated to vda if import rhel7.4 guest from kvm source at rhv4.1
  • BZ 1522799 [RFE] – DR: On template\vm registration, vnic_profile_mappings should be under registration_configuration
  • BZ 1530723 [RFE] Add posibility to specify verbose mode of ansible-playbook execution by engine configuration value
    User can specify the ansible-playbook command verbose level, which is used by engine.
    To change the value permanentaly create a configuration file 99-ansible-playbook-verbose-level.conf in /etc/ovirt-engine/engine.conf.d/ with following content:
    ANSIBLE_PLAYBOOK_VERBOSE_LEVEL=4
  • BZ 1534227 Confusing logging when cold-moving a disk – the term CreateSnapshot is referenced
  • BZ 1532040 Webadmin: Available LUNs are grayed out in block domain creation prompt
  • BZ 1528297 Reinstalling host on ‘ovirt-provider-ovn’ cluster doesn’t deploy OVN
  • BZ 1517245 [ALL_LANG] Truncated column names appear on volumes -> bricks -> advanced details -> memory pools page
  • BZ 1525912 allow to create cluster without specifying cpu type
  • BZ 1510384 iSCSI Storage domain’s size after executing ‘reduceluns’ via REST API or ‘Remove LUNs’ via UI doesn’t seem to be updated
  • BZ 1528724 Import ova playbooks assume that ovf comes first in OVA
  • BZ 1527318 The engine fails to deploy hosted-engine host: Exception: java.lang.IllegalArgumentException: No enum constant org.ovirt.engine.core.common.businessentities.network.VmInterfaceType.virtio
  • BZ 1528721 /var/log/ovirt-engine/ova not created during clean install
  • BZ 1511369 REST: add external network provider by name
  • BZ 1486761 [UI] cloud-init: improve networking text
  • BZ 1495535 Add validation to disallow hotplug memory if vm uses huge pages
  • BZ 1522708 [ja_JP] Text truncation observed on network->vNIC profile->new page.
  • BZ 1524419 resume behavior is marked as needs restart even if not needed
  • BZ 1506135 Default setting for ‘Default Network Provider’ is empty string
  • BZ 1526906 [UI] – Align the ‘Remove networks from external provider’ checkbox in the remove network dialog
  • BZ 1520123 [UI] – UI exception on add vNIC to template flow
  • BZ 1512794 [UI] – Add tooltip to the disabled default route role for clusters <=4.1
  • BZ 1522784 [UI] – Network role icons are overlapping the network’s name in case of long name or vlan tagged
  • BZ 1538998 Ansible playbooks of host deployed getting stuck
  • BZ 1536966 Can’t import template from data domain
  • BZ 1535904 engine-setup creates bad 10-setup-database.conf if it has to provision engine_TIMESTAMP
  • BZ 1534626 Webadmin-removing a boot iso CD while VM is booting is allowed
  • BZ 1511037 GetUnregisteredDiskQuery fails with NullPointerException after domain import between 4.1 and 4.2 envs
  • BZ 1534207 The engine needs newer ovirt-engine-metrics
  • BZ 1534231 ‘stateless snapshot’ disk snapshot is removable
  • BZ 1531137 Webadmin -right vertical scroller in “attach virtual disks” window hides the “shared” disk column
  • BZ 1530603 snapshots.list following delete sometimes fails (using the API)
  • BZ 1532844 Webadmin: Available LUNs are grayed out in new direct LUN prompt
  • BZ 1478001 Cannot edit new cluster memory optimization in Guide Me dialog
  • BZ 1532873 Meaningless validation message for live storage migration attempt for disk attached to VM in restoring state
  • BZ 1522669 Log uncleared async tasks when failing to stop the SPM
  • BZ 1532870 Meaningless validation message for suspended VM hibernation disks remove attempt
  • BZ 1518459 Add missing validations for affinity group, label, users and roles when registering a VM or a Template
  • BZ 1532630 Prevent deactivation of a data domain with ISO disks that are attached to running VMs
  • BZ 1532613 Unexpected character error when running check for update on a host
  • BZ 1528763 WebAdmin changes the selected host
  • BZ 1507426 All non data disks should be filtered out from the attach disk to VM dialog box
  • BZ 1494525 Can attach OVF-STORE as disk while creating a new VM
  • BZ 1528284 Fail host deploy process if any firewalld service isn’t found, by default open all predefined firewalld services for specific cluster
  • BZ 1532308 Cannot add Openstack glance and block storage provider in the UI
  • BZ 1532011 StreamingApi – Can not cancel via UI a disk that paused download by SDK
  • BZ 1527067 Null pointer exception after removing disk from VM
  • BZ 1532231 Importing a VM with the collapse snapshots checkbox unchecked still results in snapshot collapse
  • BZ 1530043 Extending a block(ISCSI) raw disk attached to a VM with a ‘virtio’ interface does not change lv size in SPM
  • BZ 1527372 AuditLogMessages – ERROR
  • BZ 1527362 SQL Deadlock ERROR on DisplayAllAuditLogEventsCommand -under scaled topology
  • BZ 1525569 PostConstruct of Backend is recursively invoked
  • BZ 1528294 Webadmin’s disk search throws an exception when trying to filter by the “bootable” property
  • BZ 1529507 UX: no auto-completion for search in Administration->Users search bar
  • BZ 1511420 [RFE] API for running VM with an ISO from the DATA domain
  • BZ 1528804 ‘Remove’ button should be disabled for OVF_STORE disks with status other than ILLEGAL
  • BZ 1523225 OVF update failure ignored
  • BZ 1465548 webadmin: Missing fields in ‘Edit Provider’ dialog for KVM, XEN and VMware provider types
  • BZ 1516412 While managing a block storage domain, moving too fast to Targets > LUNs table resets lun’s isInclude() check-mark
  • BZ 1342753 Image Transfer – authorizing once to reduce overhead in UI and proxy
  • BZ 1527866 Initial hosted-engine VM not deleted properly after ansible SHE deployment.
  • BZ 1528283 Add the ability to search storage domains by their Discard After Delete value in the webadmin
  • BZ 1511013 3.6 host install fails because of firewall type set to firewalld in 3.6 cluster
  • BZ 1502696 Advanced parameters section doesn’t get border on error Discard after delete
  • BZ 1526263 [CodeChange][i18n] oVirt 4.2 translation cycle 1, part 2
  • BZ 1502559 Prevent a storage domain to be updated to backup SD while it contain disks which are attached to running VMs or running VMs with leases
  • BZ 1525968 [GUI] – each event in host Events list appears 10 times.
  • BZ 1516907 Editing VM properties task hangs forever. The only way out is remove job_id from postgres and engine restart
  • BZ 1527134 Removing a disk with a non-existent snapshot fails
  • BZ 1525989 Cannot register VM with FC LUN
  • BZ 1526782 Querying for users throws Exception: java.lang.ClassCastException: java.util.Collections$EmptyMap cannot be cast to java.u til.HashMap
  • BZ 1524222 No heartbeat message arrived from host messages on all hosts
  • BZ 1457087 Insufficient logging for failed VM live migration with missing direct pass-though LUN
  • BZ 1519695 Remove no longer available HTTPS protocols from ENGINE_HTTPS_PROTOCOLS option
  • BZ 1524126 Webadmin: LUNs list in block domain creation prompt has multiple side to side scrolling tools which hide the LUNs

VDSM

  • BZ 1509675 Live merge with continuous I/O to the VM failed to deactivate logical volume (depends on platform bug 1516717)
  • BZ 1530839 Deployment fails configuring ovirtmgmt interface if a VLAN exists on the management interface
  • BZ 1530230 [OVS] – Supervdsm log is spammed with: ovirtmgmt is not a Linux bridge errors
  • BZ 1526815 Backup restore API: Transient volume is not created on compatibility version-4.2 after backup VM start with snapshot disk from source VM attached
  • BZ 1526192 Failed to start supervdsm on PPC host
  • BZ 1523661 When adding the host over an existing bond-vlan, it looses network connection after reboot.
  • BZ 1522971 move defaultRoute=True to a new network even if persisted on a former network
  • BZ 1527318 The engine fails to deploy hosted-engine host: Exception: java.lang.IllegalArgumentException: No enum constant org.ovirt.engine.core.common.businessentities.network.VmInterfaceType.virtio
  • BZ 1488892 iscsi re-scan is executed multiple times at connectStorageServer
  • BZ 1518587 Supervdsm log – ERROR – ‘Failed source route addition:’ on every dhclient lease renew
  • BZ 1478890 Static ip remain on the bond interface when removing non-vm network from it in case it has another vlan network attached
  • BZ 1534950 [Backup restore API] Start VM, with attached snapshot disk on block based storage, fails on libvirtError
  • BZ 1532483 Improve osinfo kdump_status() logging level.
  • BZ 1523292 sos plugin is generating Exception during plugin-setup
  • BZ 1528816 vdsm-tool remove-config does not revert changes
  • BZ 1527155 Describe jsonrpc client reconnection parameters
  • BZ 1525955 VDSM fails to start HE VM due to VM.getStats error right after VM.create (seen on OST)
  • BZ 1525453 jsonrpc reconnect logic contains busy loop and floods logs
  • BZ 1526010 Storage: Incorrect valid_paths in multipath events in some cases when several paths change states at the same time

oVirt Provider OVN

  • BZ 1530533 admin_state_up property of a router is a list instead of single value
  • BZ 1527894 Log source IP and port on requests to the provider
  • BZ 1524123 Improper error message in vdsm-tool ovn-config

ovirt-engine-dwh

  • BZ 1490941 add notice to dwh-vacuum help about full vacuum
  • BZ 1535935 engine-setup creates bad 10-setup-database.conf if it has to provision ovirt_engine_history_TIMESTAMP

oVirt Engine SDK 4 Ruby

  • BZ 1525912 allow to create cluster without specifying cpu type
  • BZ 1511369 REST: add external network provider by name
  • BZ 1522799 [RFE] – DR: On template\vm registration, vnic_profile_mappings should be under registration_configuration
  • BZ 1511420 [RFE] API for running VM with an ISO from the DATA domain

oVirt Host Deploy

  • BZ 1533390 Start glustereventsd while deploying host

imgbased

  • BZ 1528468 oVirt NGN kickstart-based install fails during imgbased layout initialization after installing an rpm package in %post
  • BZ 1538925 Failed to upgrade to rhvh-4.1-0.20180125.0
  • BZ 1519784 oVirt Node upgrade fails if SELINUX is disabled

oVirt Cockpit Plugin

  • BZ 1415179 [RFE] provide a way for the user to setup-cache
  • BZ 1523573 [RFE] Change ‘Standard’ term in cockpit deployment to ‘Hosted Engine Only Deployment’
  • BZ 1538930 The vintage (based-otopi) deployment didn’t use deprecated python flow while deploying HE via cockpit.
  • BZ 1519743 In cockpit installation of self hosted engine inputs invisible on high resolution screens
  • BZ 1535793 Cockpit is missing the options for user configure about HE-VM engine
  • BZ 1529223 Hide the iscsi portal password while deploying SHE with iscsi via cockpit.
  • BZ 1529222 There is the excess step about iscsi portal password while deploying SHE with iscsi via cockpit
  • BZ 1526448 insufficient memory message should state how much memory is needed

No Doc Update

oVirt Hosted Engine HA

  • BZ 1519289 If migration of HE VM failed because of timeout, source host will have hanged state “EngineMigratingAway”

oVirt Hosted Engine Setup

  • BZ 1529131 iscsi target password visible when having authentication error on deployment
  • BZ 1529490 hosted-engine failed to deploy because of permission error for the cloud-init iso file

oVirt Engine

  • BZ 1517108 [ALL_LANG except zh_CN, ko_KR] Table headers getting truncated on compute->virtual machines-> disks -> new -> direct LUN page.
  • BZ 1418197 [fr_FR] [Admin Portal] The UI alignment needs to be corrected on cluster->new->optimization page.
  • BZ 1497665 NPE in ovirt-engine/docs/manual
  • BZ 1483844 [UI] – Adjust the font size and icons size on the new UI design for the ‘Network Interfaces’ sub tab
  • BZ 1469538 Network changes to HE VM OVF take longer than other changes
  • BZ 1532018 engine requires tenant name for External Network Provider in RHV 4.2.1
  • BZ 1530526 configure ovirt-provider-ovn dialog appear in PACKAGES section instead of PRODUCT OPTIONS section
  • BZ 1494519 Dashboard in left menu stays highlighted when using any link from it

oVirt Provider OVN

  • BZ 1528166 Log source IP and port on requests to the authorization module

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert