cloudbase / windows-imaging-tools

Tools to automate the creation of a Windows image for OpenStack, supporting KVM, Hyper-V, ESXi and more.
Apache License 2.0
656 stars 225 forks source link

fix: split extra_features into array #389

Closed hoppla20 closed 4 months ago

hoppla20 commented 4 months ago

Fixes #388

ader1990 commented 4 months ago

Hello, thank you for the fix. PowerShell is sometimes really picky on the one item array, can you confirm that both cases work: with one feature and two comma separated features? Thanks.

hoppla20 commented 4 months ago

I will test both cases and report back

hoppla20 commented 4 months ago

So I have not tested extra_feature with a single feature, but found another interessting "bug":

When I set extra_features="Feature-1,Feature-2" it works, but extra_features=Feature-1,Feature-2 does not work. Do you have an idea why?

hoppla20 commented 4 months ago

I just started getting into PowerShell, I had a quick look, but didn't find the cause of this behaviour

ader1990 commented 4 months ago

I have tried to reproduce the behaviour, but could not. What is the output of $PSVersionTable in your Powershell?

hoppla20 commented 4 months ago

This is the output of echo $PSVersionTable:

Name                           Value
----                           -----
PSVersion                      5.1.17763.2090
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.17763.2090
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
hoppla20 commented 4 months ago

I will try all cases (multiple features with and without quotes, single feature) again tomorrow. The environment I'm testing in is not the fastest, so each build takes forever...

Thank you for helping!

ader1990 commented 4 months ago

This PR is good to merge, as long as we document the good behaviour/bad behaviour in the Config.psm1. Can you elaborate on what the failure is if there are no double quotes?

hoppla20 commented 4 months ago

Test with

[DEFAULT]
extra_features="Microsoft-Hyper-V,Containers"
Full config.ini ``` [DEFAULT] # The location of the WIM file from the mounted Windows ISO. wim_file_path=E:\sources\install.wim # This is the complete name of the Windows version that will be generated. # In order to find the possible options, use the Get-WimFileImagesInfo command # and look for the Name property. image_name=Windows Server 2019 SERVERSTANDARD # The destination of the generated image. image_path=C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx # Select between VHD, VHDX, QCOW2, VMDK or RAW formats. virtual_disk_format=VHDX # This parameter allows to choose between MAAS, KVM, VMware and Hyper-V specific images. # For HYPER-V, cloudbase-init will be installed and the generated image should be in vhd or vhdx format. # For MAAS, in addition to cloudbase-init, the curtin tools are installed # and the generated image should be in raw.tgz format. # For KVM, in addition to cloudbase-init, the VirtIO drivers are installed # and the generated image should be in qcow2 format. image_type=HYPER-V # This parameter can be set to either BIOS or UEFI. disk_layout=UEFI # The product key for the selected OS. If the value is default_kms_key and the Windows image is # ServerStandard or ServerDatacenter (Core), the appropiate KMS key will be used. product_key="" # A comma separated array of extra features that will be enabled on the resulting image. # These features need to be present in the ISO file. extra_features="Microsoft-Hyper-V,Containers" # A comma separated array of extra capabilities that will be enabled on the resulting image. # These capabilities need to be present in the ISO file. extra_capabilities="" # It will force the image generation when RunSysprep is False or the selected SwitchName # is not an external one. Use this parameter with caution because it can easily generate # unstable images. force=False # If set to true, MAAS Windows curtin hooks will be copied to the image root directory. install_maas_hooks=True # Select between tar, gz, zip formats or any combination between these. compression_format="" # If this parameter is set, after the image is generated, # a password protected zip archive with the image will be created. # compression_format must contain zip in order for this parameter to be used zip_password="" # It will stop the image generation after the updates are installed and cleaned. gold_image=False # This is the full path of the already generated golden image. # It should be a valid VHDX path. gold_image_path="" # This is a full path to the VMware-tools.exe version that you want to install. vmware_tools_path="" # If set to true, .NET Framework 3.5 will be installed before the windows updates. # This feature applies only ot Windows server 2012 R2. install_net_3_5=False # This is the full path of a folder with custom resources which will be used by # the custom scripts. # The resources found at this path will be copied recursively to the image # UnattendResources\CustomResources folder. custom_resources_path="" # This is the full path of the folder which can contain a set of PS scripts, # that will be copied and executed during the online generation part on the VM. # The PowerShell scripts, if existent, will be started by Logon.ps1 script, # at different moments during image generation. # The purpose of these scripts is to offer to the user a fully # customizable way of defining additional logic for tweaking the final image. # The scripts files can have the following names: RunBeforeWindowsUpdates.ps1, # RunAfterWindowsUpdates.ps1, RunBeforeCloudbaseInitInstall.ps1, RunAfterCloudbaseInitInstall.ps1, # RunBeforeSysprep.ps1, RunAfterSysprep.ps1. # The script names contain the information on when the script will be executed. # One can define only some of the hook scripts and it is not mandatory to define all of them. # If a script does not exist, it will not be executed. custom_scripts_path="" # If set to true the Administrator account will be enabled on the client # versions of Windows, which have the Administrator account disabled by default enable_administrator_account=False # Whether to shrink the image partition and disk after the image generation is complete. shrink_image_to_minimum_size=True # If set to true, a custom wallpaper will be set according to the values of configuration options # wallpaper_path and wallpaper_solid_color enable_custom_wallpaper=False # If set, it will replace the Cloudbase Solutions wallpaper to the one specified. # The wallpaper needs to be a valid .jpg/.jpeg image. wallpaper_path="" # If set, it will replace the Cloudbase Solutions wallpaper to a solid color. # Currently, the only allowed solid color is '0 0 0' (black). # If both wallpaper_path and wallpaper_solid_color are set, # the script will throw an error. wallpaper_solid_color="" # If set, the animation displayed during the first login on Windows Client versions will be disabled. disable_first_logon_animation=False # If set to true and the target image format is QCOW2, the image conversion will # use qemu-img built-in compression. The compressed qcow2 image will be smaller, but the conversion # will take longer time. compress_qcow2=False # If set to true, during final cleanup, https://github.com/felfert/ntfszapfree will be used to zero unused space. # This helps qemu-img to minimize image size. In order to benefit from this, an additional invocation # of qemu-img convert must be performed after the initial run of the image has shutdown. zero_unused_volume_sectors=False # A comma separated list of extra packages (referenced by filepath) # to slipstream into the underlying image. # This allows additional local packages, like security updates, to be added to the image. extra_packages="" # Ignore failures from DISM when installing extra_packages, such as when # updates are skipped which are not applicable to the image. extra_packages_ignore_errors=False # Enables shutdown of the Windows instance from the logon console. enable_shutdown_without_logon=False # If set to true, firewall rules will be added to enable ping requests (ipv4 and ipv6). enable_ping_requests=False # If set to true, use EUI-64 derived IDs and disable privacy extensions for IPv6. # If set to false, the IPv6 protocol might not work on OpenStack or CloudStack. # See https://github.com/cloudbase/windows-openstack-imaging-tools/issues/192 enable_ipv6_eui64=False # If set to true, it will set the High Performance mode and some power mode # and registry tweaks to prevent the machine from sleeping / hibernating. enable_active_mode=True [vm] # This will be the Administrator user's, so that AutoLogin can be performed on the instance, # in order to install the required products, # updates and perform the generation tasks like sysprep. administrator_password=Pa$$w0rd # Used to specify the virtual switch the VM will be using. # If it is specified but it is not external or if the switch does not exist, # you will get an error message. external_switch=external # The number of CPU cores assigned to the VM used to generate the image. cpu_count=4 # RAM (in bytes) assigned to the VM used to generate the image. ram_size=4294967296 # Disk space (in bytes) assigned to the boot disk for the VM used to generate the image. disk_size=32212254720 # If set to true and the disk layout is UEFI, the secure boot firmware option will be disabled. disable_secure_boot=False [drivers] # The path to the ISO file containing the VirtIO drivers. virtio_iso_path="" # The location where the VirtIO drivers are found. # For example, the location of a mounted VirtIO ISO. VirtIO versions supported >=0.1.6.x virtio_base_path="" # The location where additional drivers that are needed for the image are located. drivers_path="" [custom] # Installs QEMU guest agent services from the Fedora VirtIO website. # Defaults to 'False' (no installation will be performed). # If set to 'True', the following MSI installer will be downloaded and installed: # * for x86: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-100.0.0.0-3.el7ev/qemu-ga-x86.msi # * for x64: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-100.0.0.0-3.el7ev/qemu-ga-x64.msi # The value can be changed to a custom URL, to allow other QEMU guest agent versions to be installed. # Note: QEMU guest agent requires VirtIO drivers to be present on the image. install_qemu_ga=False # Set a custom timezone for the Windows image. time_zone=W. Europe Standard Time # Set custom ntp servers(space separated) for the Windows image ntp_servers="" [updates] # If set to true, the latest updates will be downloaded and installed. install_updates=False # If set to true, will run DISM with /resetbase option. This will reduce the size of # WinSXS folder, but after that Windows updates cannot be uninstalled. purge_updates=True # Clean up the updates / components by running a DISM Cleanup-Image command. # This is useful when updates or capabilities are installed offline. clean_updates_offline=False # Clean up the updates / components by running a DISM Cleanup-Image command. # This is useful when updates or other packages are installed when the instance is running. clean_updates_online=True [sysprep] # Used to clean the OS on the VM, and to prepare it for a first-time use. run_sysprep=True # The path to the Unattend XML template file used for sysprep. unattend_xml_path=UnattendTemplate.xml # DisableSwap option will disable the swap when the image is generated and will add a setting # in the Unattend.xml file which will enable swap at boot time during specialize step. # This is required, as by default, the amount of swap space on Windows machine is directly # proportional to the RAM size and if the image has in the initial stage low disk space, # the first boot will fail due to not enough disk space. The swap is set to the default # automatic setting right after the resize of the partitions is performed by cloudbase-init. disable_swap=True # In case the hardware on which the image is generated will also be the hardware on # which the image will be deployed this can be set to true, otherwise the spawned # instance is prone to BSOD. persist_drivers_install=True [cloudbase_init] # This is a switch that allows the selection of Cloudbase-Init branches. If set to true, the # beta branch will be used: # https://cloudbase.it/downloads/CloudbaseInitSetup_.msi, where arch can be x86 or x64 # otherwise the stable branch will be used: # https://cloudbase.it/downloads/CloudbaseInitSetup_Stable_.msi, where arch can be x86 or x64 beta_release=False # Serial log port for Cloudbase-Init. # If set to null, the first serial port (if any) from the generation VM will be used serial_logging_port=COM1 # If set, the Cloudbase-Init msi at this path will be used. # The path needs to be a locally accessible file path. msi_path="" # If set, the cloudbase-init.conf is replaced with the file at the path. cloudbase_init_config_path="" # If set, the cloudbase-init-unattend.conf is replaced with the file at the path. cloudbase_init_unattended_config_path="" # If set, the Cloudbase-Init service will be run under Local System account. # By default, a user named cloudbase-init with admin rights is created and used. cloudbase_init_use_local_system=False # If set, the Cloudbase-Init service startup type will be set to delayed-auto cloudbase_init_delayed_start=False ```

Result: Build successfully

Output ``` 3/14/2024 9:35:45 AM - Windows online image generation started. 3/14/2024 9:35:54 AM - Cloud image generation started. WARNUNG: The installed version of DISM is older than the Windows image 3/14/2024 9:35:59 AM - Creating Virtual Disk Image: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx... 3/14/2024 9:36:05 AM - Successfuly created disk: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx 3/14/2024 9:36:05 AM - Generate Unattend Xml :G:\Unattend.xml... 3/14/2024 9:36:05 AM - Xml was generated. 3/14/2024 9:36:05 AM - Copy Unattend Resources: Server... 3/14/2024 9:36:05 AM - Copying: C:\Users\Build\Workspace\windows-openstack-imaging-tools\UnattendResources G:\UnattendResources 3/14/2024 9:36:07 AM - Resources have been copied. 3/14/2024 9:36:07 AM - Copy Custom Resources: ... 3/14/2024 9:36:07 AM - Custom Resources at: G:\UnattendResources. 3/14/2024 9:36:07 AM - Downloading Cloudbase-Init... 3/14/2024 9:36:08 AM - Applying Windows image "E:\sources\install.wim" in "G:\" Tool zur Imageverwaltung für die Bereitstellung Version: 10.0.17763.1697 Das Image wird angewendet. [==========================100.0%==========================] Der Vorgang wurde erfolgreich beendet. 3/14/2024 9:41:27 AM - Create BCDBoot Config for Windows Server 2019 SERVERSTANDARD 3/14/2024 9:41:33 AM - BCDBoot config has been created. Tool zur Imageverwaltung für die Bereitstellung Version: 10.0.17763.1697 Abbildversion: 10.0.17763.2114 Features werden aktiviert Features werden aktiviert [ 0.1% ] [ 0.1% ] [ 1.1% ] [ 1.1% ] [= 2.1% ] [= 2.1% ] [= 3.1% ] [= 3.1% ] [== 4.1% ] [== 4.1% ] [== 5.1% ] [== 5.1% ] [=== 6.1% ] [=== 6.1% ] [==== 7.1% ] [==== 7.1% ] [==== 8.1% ] [==== 8.1% ] [===== 9.1% ] [===== 9.1% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [====== 11.0% ] [====== 11.0% ] [====== 12.0% ] [====== 12.0% ] [======= 13.0% ] [======= 13.0% ] [======== 14.0% ] [======== 14.0% ] [======== 15.0% ] [======== 15.0% ] [========= 16.0% ] [========= 16.0% ] [========= 17.0% ] [========= 17.0% ] [========== 18.0% ] [========== 18.0% ] [=========== 19.0% ] [=========== 19.0% ] [=========== 20.0% ] [=========== 20.0% ] [============ 21.0% ] [============ 21.0% ] [============ 22.0% ] [============ 22.0% ] [============= 23.0% ] [============= 23.0% ] [============= 24.0% ] [============= 24.0% ] [============== 25.0% ] [============== 25.0% ] [=============== 26.0% ] [=============== 26.0% ] [=============== 27.0% ] [=============== 27.0% ] [================ 28.0% ] [================ 28.0% ] [================ 29.0% ] [================ 29.0% ] [================= 30.0% ] [================= 30.0% ] [================= 30.2% ] [================= 30.2% ] [================= 30.4% ] [================= 30.4% ] [================= 30.7% ] [================= 30.7% ] [================= 30.9% ] [================= 30.9% ] [================= 31.0% ] [================= 31.0% ] [================== 31.4% ] [================== 31.4% ] [================== 31.8% ] [================== 31.8% ] [================== 32.2% ] [================== 32.2% ] [================== 32.4% ] [================== 32.4% ] [=================== 33.3% ] [=================== 33.3% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 34.4% ] [=================== 34.4% ] [==================== 35.4% ] [==================== 35.4% ] [===================== 36.4% ] [===================== 36.4% ] [===================== 37.4% ] [===================== 37.4% ] [====================== 38.4% ] [====================== 38.4% ] [====================== 39.4% ] [====================== 39.4% ] [======================= 40.4% ] [======================= 40.4% ] [======================== 41.4% ] [======================== 41.4% ] [======================== 42.4% ] [======================== 42.4% ] [========================= 43.4% ] [========================= 43.4% ] [========================= 44.4% ] [========================= 44.4% ] [========================== 45.4% ] [========================== 45.4% ] [========================== 46.4% ] [========================== 46.4% ] [===========================47.4% ] [===========================47.4% ] [===========================48.4% ] [===========================48.4% ] [===========================49.4% ] [===========================49.4% ] [===========================50.4% ] [===========================50.4% ] [===========================51.4% ] [===========================51.4% ] [===========================52.4% ] [===========================52.4% ] [===========================53.4% ] [===========================53.4% ] [===========================54.4% ] [===========================54.4% ] [===========================55.4% ] [===========================55.4% ] [===========================55.6% ] [===========================55.6% ] [===========================56.5% ] [===========================56.5% ] [===========================57.5%= ] [===========================57.5%= ] [===========================58.5%= ] [===========================58.5%= ] [===========================59.5%== ] [===========================59.5%== ] [===========================60.5%=== ] [===========================60.5%=== ] [===========================61.4%=== ] [===========================61.4%=== ] [===========================62.4%==== ] [===========================62.4%==== ] [===========================63.4%==== ] [===========================63.4%==== ] [===========================64.2%===== ] [===========================64.2%===== ] [===========================65.2%===== ] [===========================65.2%===== ] [===========================66.2%====== ] [===========================66.2%====== ] [===========================67.2%====== ] [===========================67.2%====== ] [===========================67.8%======= ] [===========================67.8%======= ] [===========================68.8%======= ] [===========================68.8%======= ] [===========================69.8%======== ] [===========================69.8%======== ] [===========================70.8%========= ] [===========================70.8%========= ] [===========================71.4%========= ] [===========================71.4%========= ] [===========================72.1%========= ] [===========================72.1%========= ] [===========================73.1%========== ] [===========================73.1%========== ] [===========================74.1%========== ] [===========================74.1%========== ] [===========================74.8%=========== ] [===========================74.8%=========== ] [===========================75.8%=========== ] [===========================75.8%=========== ] [===========================76.9%============ ] [===========================76.9%============ ] [===========================77.6%============= ] [===========================77.6%============= ] [===========================78.2%============= ] [===========================78.2%============= ] [===========================81.7%=============== ] [===========================81.7%=============== ] [===========================82.7%=============== ] [===========================82.7%=============== ] [===========================83.7%================ ] [===========================83.7%================ ] [===========================84.7%================= ] [===========================84.7%================= ] [===========================85.7%================= ] [===========================85.7%================= ] [===========================86.7%================== ] [===========================86.7%================== ] [===========================87.7%================== ] [===========================87.7%================== ] [===========================88.7%=================== ] [===========================88.7%=================== ] [===========================89.7%==================== ] [===========================89.7%==================== ] [===========================90.7%==================== ] [===========================90.7%==================== ] [===========================91.7%===================== ] [===========================91.7%===================== ] [===========================92.7%===================== ] [===========================92.7%===================== ] [===========================93.6%====================== ] [===========================93.6%====================== ] [===========================94.6%====================== ] [===========================94.6%====================== ] [===========================95.6%======================= ] [===========================95.6%======================= ] [===========================96.6%======================== ] [===========================96.6%======================== ] [===========================97.6%======================== ] [===========================97.6%======================== ] [===========================97.8%======================== ] [===========================97.8%======================== ] [===========================98.3%========================= ] [===========================98.3%========================= ] [===========================99.0%========================= ] [===========================99.0%========================= ] [==========================100.0%==========================] [==========================100.0%==========================] Der Vorgang wurde erfolgreich beendet. 3/14/2024 9:43:58 AM - Cloud image generation finished. Image path: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx 3/14/2024 9:43:59 AM - Creating VM WindowsOnlineImage-Sysprep1042874413 attached to external 3/14/2024 9:44:01 AM - Starting WindowsOnlineImage-Sysprep1042874413 3/14/2024 9:46:50 AM - Waiting for WindowsOnlineImage-Sysprep1042874413 to finish sysprep. 3/14/2024 9:46:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:46:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:46:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:46:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:46:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:46:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:46:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:44 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:47:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:48:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:44 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:49:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:44 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:50:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:44 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:51:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:52:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:53:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:54:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:55:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:44 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:56:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:35 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:44 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:57:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:01 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:06 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:10 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:15 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:20 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:26 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:32 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:40 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:45 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:51 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:57 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:58:59 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:00 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:02 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:03 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:04 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:05 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:07 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:08 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:09 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:11 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:12 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:13 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:14 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:16 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:17 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:18 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:19 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:21 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:22 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:23 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:24 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:25 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:27 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:28 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:29 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:30 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:31 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:33 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:34 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:36 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:37 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:38 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:39 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:41 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:42 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:43 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:44 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:46 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:47 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:48 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:49 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:50 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:52 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:53 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:54 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:55 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:56 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:58 AM - Could not retrieve VM runtime logs 3/14/2024 9:59:59 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:01 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:02 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:03 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:04 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:06 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:07 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:08 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:09 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:11 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:12 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:13 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:14 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:15 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:17 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:18 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:19 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:20 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:21 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:23 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:24 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:25 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:27 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:28 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:29 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:31 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:32 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:33 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:34 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:36 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:37 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:38 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:39 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:40 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:42 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:43 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:44 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:45 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:46 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:48 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:49 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:50 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:52 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:53 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:54 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:56 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:57 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:58 AM - Could not retrieve VM runtime logs 3/14/2024 10:00:59 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:01 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:02 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:03 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:04 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:05 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:07 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:08 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:09 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:10 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:11 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:13 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:14 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:15 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:16 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:18 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:19 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:21 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:22 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:23 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:24 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:25 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:27 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:28 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:29 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:30 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:32 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:33 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:34 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:35 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:36 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:38 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:39 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:40 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:41 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:42 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:44 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:45 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:46 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:48 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:49 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:50 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:52 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:53 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:54 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:55 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:57 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:58 AM - Could not retrieve VM runtime logs 3/14/2024 10:01:59 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:00 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:01 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:03 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:04 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:05 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:06 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:07 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:09 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:10 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:11 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:12 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:13 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:15 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:16 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:18 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:19 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:20 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:21 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:23 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:24 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:25 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:26 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:28 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:29 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:30 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:31 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:32 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:34 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:35 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:36 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:37 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:38 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:40 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:41 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:42 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:43 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:45 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:46 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:47 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:49 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:50 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:51 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:52 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:54 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:55 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:56 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:57 AM - Could not retrieve VM runtime logs 3/14/2024 10:02:59 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:00 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:01 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:02 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:03 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:05 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:06 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:07 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:08 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:09 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:11 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:12 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:13 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:14 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:16 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:17 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:18 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:20 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:21 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:22 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:23 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:25 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:26 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:27 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:28 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:30 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:31 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:32 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:33 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:34 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:36 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:37 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:38 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:39 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:40 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:42 AM - Could not retrieve VM runtime logs 3/14/2024 10:03:48 AM - Shrinking VHD to minimum size 3/14/2024 10:03:49 AM - Initial VHD size is: 30 GB 3/14/2024 10:04:02 AM - Current partition size: 29.6630859375 GB 3/14/2024 10:04:02 AM - New partition size: 12 GB 3/14/2024 10:04:02 AM - Size increased: 12884901888 3/14/2024 10:04:06 AM - Final disk size: 12.3359532356262 GB 3/14/2024 10:04:12 AM - Windows online image generation finished. Image path: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx ```
hoppla20 commented 4 months ago

Tests without quotes and with only a single feature are also comming as soon as they are finished

hoppla20 commented 4 months ago

Test with

[DEFAULT]
extra_features=Microsoft-Hyper-V,Containers

Same config.ini, only removed quotes.

Output ``` 3/14/2024 2:06:58 PM - Windows online image generation started. 3/14/2024 2:07:12 PM - Found already existing image file. Removing it... 3/14/2024 2:07:12 PM - Already existent image file has been removed. 3/14/2024 2:07:12 PM - Cloud image generation started. WARNUNG: The installed version of DISM is older than the Windows image 3/14/2024 2:07:15 PM - Creating Virtual Disk Image: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx... 3/14/2024 2:07:23 PM - Successfuly created disk: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx 3/14/2024 2:07:23 PM - Generate Unattend Xml :G:\Unattend.xml... 3/14/2024 2:07:23 PM - Xml was generated. 3/14/2024 2:07:23 PM - Copy Unattend Resources: Server... 3/14/2024 2:07:23 PM - Copying: C:\Users\Build\Workspace\windows-openstack-imaging-tools\UnattendResources G:\UnattendResources 3/14/2024 2:07:26 PM - Resources have been copied. 3/14/2024 2:07:26 PM - Copy Custom Resources: ... 3/14/2024 2:07:26 PM - Custom Resources at: G:\UnattendResources. 3/14/2024 2:07:26 PM - Downloading Cloudbase-Init... 3/14/2024 2:07:27 PM - Applying Windows image "E:\sources\install.wim" in "G:\" Tool zur Imageverwaltung für die Bereitstellung Version: 10.0.17763.1697 Das Image wird angewendet. [==========================100.0%==========================] Der Vorgang wurde erfolgreich beendet. 3/14/2024 2:11:58 PM - Create BCDBoot Config for Windows Server 2019 SERVERSTANDARD 3/14/2024 2:12:03 PM - BCDBoot config has been created. Tool zur Imageverwaltung für die Bereitstellung Version: 10.0.17763.1697 Abbildversion: 10.0.17763.2114 Features werden aktiviert Features werden aktiviert [ 0.1% ] [ 0.1% ] [ 1.1% ] [ 1.1% ] [= 2.1% ] [= 2.1% ] [= 3.1% ] [= 3.1% ] [== 4.1% ] [== 4.1% ] [== 5.1% ] [== 5.1% ] [=== 6.1% ] [=== 6.1% ] [==== 7.1% ] [==== 7.1% ] [==== 8.1% ] [==== 8.1% ] [===== 9.1% ] [===== 9.1% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [====== 11.0% ] [====== 11.0% ] [====== 12.0% ] [====== 12.0% ] [======= 13.0% ] [======= 13.0% ] [======== 14.0% ] [======== 14.0% ] [======== 15.0% ] [======== 15.0% ] [========= 16.0% ] [========= 16.0% ] [========= 17.0% ] [========= 17.0% ] [========== 18.0% ] [========== 18.0% ] [=========== 19.0% ] [=========== 19.0% ] [=========== 20.0% ] [=========== 20.0% ] [============ 21.0% ] [============ 21.0% ] [============ 22.0% ] [============ 22.0% ] [============= 23.0% ] [============= 23.0% ] [============= 24.0% ] [============= 24.0% ] [============== 25.0% ] [============== 25.0% ] [=============== 26.0% ] [=============== 26.0% ] [=============== 27.0% ] [=============== 27.0% ] [================ 28.0% ] [================ 28.0% ] [================ 29.0% ] [================ 29.0% ] [================= 30.0% ] [================= 30.0% ] [================= 30.2% ] [================= 30.2% ] [================= 30.4% ] [================= 30.4% ] [================= 30.7% ] [================= 30.7% ] [================= 30.9% ] [================= 30.9% ] [================== 31.4% ] [================== 31.4% ] [================== 31.8% ] [================== 31.8% ] [================== 32.3% ] [================== 32.3% ] [================== 32.5% ] [================== 32.5% ] [=================== 33.3% ] [=================== 33.3% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 34.4% ] [=================== 34.4% ] [==================== 35.4% ] [==================== 35.4% ] [===================== 36.4% ] [===================== 36.4% ] [===================== 37.4% ] [===================== 37.4% ] [====================== 38.4% ] [====================== 38.4% ] [====================== 39.4% ] [====================== 39.4% ] [======================= 40.4% ] [======================= 40.4% ] [======================== 41.4% ] [======================== 41.4% ] [======================== 42.4% ] [======================== 42.4% ] [========================= 43.4% ] [========================= 43.4% ] [========================= 44.4% ] [========================= 44.4% ] [========================== 45.4% ] [========================== 45.4% ] [========================== 46.4% ] [========================== 46.4% ] [===========================47.4% ] [===========================47.4% ] [===========================48.4% ] [===========================48.4% ] [===========================49.4% ] [===========================49.4% ] [===========================50.4% ] [===========================50.4% ] [===========================51.4% ] [===========================51.4% ] [===========================52.4% ] [===========================52.4% ] [===========================53.4% ] [===========================53.4% ] [===========================54.4% ] [===========================54.4% ] [===========================55.4% ] [===========================55.4% ] [===========================55.8% ] [===========================55.8% ] [===========================56.8% ] [===========================56.8% ] [===========================57.8%= ] [===========================57.8%= ] [===========================58.8%== ] [===========================58.8%== ] [===========================59.8%== ] [===========================59.8%== ] [===========================60.8%=== ] [===========================60.8%=== ] [===========================61.8%=== ] [===========================61.8%=== ] [===========================62.8%==== ] [===========================62.8%==== ] [===========================63.8%===== ] [===========================63.8%===== ] [===========================64.5%===== ] [===========================64.5%===== ] [===========================65.5%===== ] [===========================65.5%===== ] [===========================66.5%====== ] [===========================66.5%====== ] [===========================67.5%======= ] [===========================67.5%======= ] [===========================68.5%======= ] [===========================68.5%======= ] [===========================69.5%======== ] [===========================69.5%======== ] [===========================70.5%======== ] [===========================70.5%======== ] [===========================71.4%========= ] [===========================71.4%========= ] [===========================72.0%========= ] [===========================72.0%========= ] [===========================73.0%========== ] [===========================73.0%========== ] [===========================74.0%========== ] [===========================74.0%========== ] [===========================74.8%=========== ] [===========================74.8%=========== ] [===========================75.8%=========== ] [===========================75.8%=========== ] [===========================76.9%============ ] [===========================76.9%============ ] [===========================77.9%============= ] [===========================77.9%============= ] [===========================81.7%=============== ] [===========================81.7%=============== ] [===========================82.7%=============== ] [===========================82.7%=============== ] [===========================83.7%================ ] [===========================83.7%================ ] [===========================84.7%================= ] [===========================84.7%================= ] [===========================85.7%================= ] [===========================85.7%================= ] [===========================86.7%================== ] [===========================86.7%================== ] [===========================87.7%================== ] [===========================87.7%================== ] [===========================88.7%=================== ] [===========================88.7%=================== ] [===========================89.7%==================== ] [===========================89.7%==================== ] [===========================90.7%==================== ] [===========================90.7%==================== ] [===========================91.7%===================== ] [===========================91.7%===================== ] [===========================92.7%===================== ] [===========================92.7%===================== ] [===========================93.7%====================== ] [===========================93.7%====================== ] [===========================94.7%====================== ] [===========================94.7%====================== ] [===========================95.7%======================= ] [===========================95.7%======================= ] [===========================96.7%======================== ] [===========================96.7%======================== ] [===========================97.6%======================== ] [===========================97.6%======================== ] [===========================97.7%======================== ] [===========================97.7%======================== ] [===========================98.1%======================== ] [===========================98.1%======================== ] [===========================99.0%========================= ] [===========================99.0%========================= ] [===========================99.0%========================= ] [===========================99.0%========================= ] [==========================100.0%==========================] [==========================100.0%==========================] Der Vorgang wurde erfolgreich beendet. 3/14/2024 2:14:10 PM - Cloud image generation finished. Image path: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx 3/14/2024 2:14:11 PM - Creating VM WindowsOnlineImage-Sysprep399470441 attached to external 3/14/2024 2:14:13 PM - Starting WindowsOnlineImage-Sysprep399470441 3/14/2024 2:16:08 PM - Waiting for WindowsOnlineImage-Sysprep399470441 to finish sysprep. 3/14/2024 2:16:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:16:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:17:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:18:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:19:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:20:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:21:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:22:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:23:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:24:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:25:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:26:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:27:16 PM - Shrinking VHD to minimum size 3/14/2024 2:27:16 PM - Initial VHD size is: 30 GB 3/14/2024 2:27:25 PM - Current partition size: 29.6630859375 GB 3/14/2024 2:27:25 PM - New partition size: 12 GB 3/14/2024 2:27:25 PM - Size increased: 12884901888 3/14/2024 2:27:29 PM - Final disk size: 12.3359532356262 GB 3/14/2024 2:27:35 PM - Windows online image generation finished. Image path: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx ```
hoppla20 commented 4 months ago

So the problem I had yesterday was probably due to some other configuration change I made

ader1990 commented 4 months ago

So the problem I had yesterday was probably due to some other configuration change I made

Then it is all good for merge?

ader1990 commented 4 months ago

I see this error Could not retrieve VM runtime logs -> but we can create a new issue for this problem.

hoppla20 commented 4 months ago

I currently running the tests with extra_features=Micrsoft-Hyper-V (only a single feature). When this build finishes successfully I would say it's ready to merge :+1:

hoppla20 commented 4 months ago

Test with

[DEFAULT]
extra_features=Microsoft-Hyper-V
Output ``` 3/14/2024 2:34:34 PM - Windows online image generation started. 3/14/2024 2:34:41 PM - Found already existing image file. Removing it... 3/14/2024 2:34:41 PM - Already existent image file has been removed. 3/14/2024 2:34:41 PM - Cloud image generation started. WARNUNG: The installed version of DISM is older than the Windows image 3/14/2024 2:34:43 PM - Creating Virtual Disk Image: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx... 3/14/2024 2:34:47 PM - Successfuly created disk: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx 3/14/2024 2:34:47 PM - Generate Unattend Xml :G:\Unattend.xml... 3/14/2024 2:34:47 PM - Xml was generated. 3/14/2024 2:34:47 PM - Copy Unattend Resources: Server... 3/14/2024 2:34:47 PM - Copying: C:\Users\Build\Workspace\windows-openstack-imaging-tools\UnattendResources G:\UnattendResources 3/14/2024 2:34:47 PM - Resources have been copied. 3/14/2024 2:34:47 PM - Copy Custom Resources: ... 3/14/2024 2:34:47 PM - Custom Resources at: G:\UnattendResources. 3/14/2024 2:34:47 PM - Downloading Cloudbase-Init... 3/14/2024 2:34:49 PM - Applying Windows image "E:\sources\install.wim" in "G:\" Tool zur Imageverwaltung für die Bereitstellung Version: 10.0.17763.1697 Das Image wird angewendet. [==========================100.0%==========================] Der Vorgang wurde erfolgreich beendet. 3/14/2024 2:39:31 PM - Create BCDBoot Config for Windows Server 2019 SERVERSTANDARD 3/14/2024 2:39:37 PM - BCDBoot config has been created. Tool zur Imageverwaltung für die Bereitstellung Version: 10.0.17763.1697 Abbildversion: 10.0.17763.2114 Features werden aktiviert [ 0.1% ] [ 1.1% ] [= 2.1% ] [= 3.1% ] [== 4.1% ] [== 5.1% ] [=== 6.1% ] [==== 7.1% ] [==== 8.1% ] [===== 9.1% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [===== 10.0% ] [====== 11.0% ] [====== 12.0% ] [======= 13.0% ] [======== 14.0% ] [======== 15.0% ] [========= 16.0% ] [========= 17.0% ] [========== 18.0% ] [=========== 19.0% ] [=========== 20.0% ] [============ 21.0% ] [============ 22.0% ] [============= 23.0% ] [============= 24.0% ] [============== 25.0% ] [=============== 26.0% ] [=============== 27.0% ] [================ 28.0% ] [================ 29.0% ] [================= 30.0% ] [================= 30.2% ] [================= 30.3% ] [================= 30.7% ] [================= 30.9% ] [================== 31.1% ] [================== 31.6% ] [================== 32.0% ] [================== 32.3% ] [================== 32.6% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 33.4% ] [=================== 34.4% ] [==================== 35.4% ] [===================== 36.4% ] [===================== 37.4% ] [====================== 38.4% ] [====================== 39.4% ] [======================= 40.4% ] [======================== 41.5% ] [======================== 42.5% ] [========================= 43.5% ] [========================= 44.5% ] [========================== 45.5% ] [========================== 46.5% ] [===========================47.5% ] [===========================48.5% ] [===========================49.5% ] [===========================50.5% ] [===========================51.5% ] [===========================52.6% ] [===========================53.6% ] [===========================54.6% ] [===========================55.6% ] [===========================56.6% ] [===========================57.6%= ] [===========================58.6%= ] [===========================59.6%== ] [===========================60.6%=== ] [===========================61.6%=== ] [===========================62.6%==== ] [===========================63.6%==== ] [===========================64.6%===== ] [===========================65.6%====== ] [===========================66.6%====== ] [===========================67.6%======= ] [===========================68.6%======= ] [===========================69.6%======== ] [===========================70.6%======== ] [===========================71.6%========= ] [===========================72.3%========= ] [===========================73.3%========== ] [===========================74.3%=========== ] [===========================74.8%=========== ] [===========================75.8%=========== ] [===========================76.9%============ ] [===========================77.9%============= ] [===========================81.7%=============== ] [===========================82.7%=============== ] [===========================83.7%================ ] [===========================84.7%================= ] [===========================85.7%================= ] [===========================86.7%================== ] [===========================87.7%================== ] [===========================88.7%=================== ] [===========================89.7%==================== ] [===========================90.7%==================== ] [===========================91.7%===================== ] [===========================92.7%===================== ] [===========================93.7%====================== ] [===========================94.7%====================== ] [===========================95.7%======================= ] [===========================96.7%======================== ] [===========================97.4%======================== ] [===========================97.5%======================== ] [===========================97.8%======================== ] [===========================98.0%======================== ] [===========================99.0%========================= ] [===========================99.0%========================= ] [==========================100.0%==========================] Der Vorgang wurde erfolgreich beendet. 3/14/2024 2:41:31 PM - Cloud image generation finished. Image path: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx 3/14/2024 2:41:31 PM - Creating VM WindowsOnlineImage-Sysprep180524883 attached to external 3/14/2024 2:41:33 PM - Starting WindowsOnlineImage-Sysprep180524883 3/14/2024 2:42:28 PM - Waiting for WindowsOnlineImage-Sysprep180524883 to finish sysprep. 3/14/2024 2:42:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:42:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:43:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:44:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:45:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:46:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:47:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:48:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:49:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:50:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:51:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:52:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:11 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:53:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:06 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:14 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:19 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:25 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:31 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:35 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:39 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:44 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:50 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:53 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:57 PM - Could not retrieve VM runtime logs 3/14/2024 2:54:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:04 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:05 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:07 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:08 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:09 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:10 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:12 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:13 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:15 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:16 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:17 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:18 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:20 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:21 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:22 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:23 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:24 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:26 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:27 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:28 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:29 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:30 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:32 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:33 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:34 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:36 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:37 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:38 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:40 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:41 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:42 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:43 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:45 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:46 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:47 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:48 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:49 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:51 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:52 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:54 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:55 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:56 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:58 PM - Could not retrieve VM runtime logs 3/14/2024 2:55:59 PM - Could not retrieve VM runtime logs 3/14/2024 2:56:00 PM - Could not retrieve VM runtime logs 3/14/2024 2:56:01 PM - Could not retrieve VM runtime logs 3/14/2024 2:56:02 PM - Could not retrieve VM runtime logs 3/14/2024 2:56:03 PM - Could not retrieve VM runtime logs 3/14/2024 2:56:04 PM - Shrinking VHD to minimum size 3/14/2024 2:56:05 PM - Initial VHD size is: 30 GB 3/14/2024 2:56:15 PM - Current partition size: 29.6630859375 GB 3/14/2024 2:56:15 PM - New partition size: 12 GB 3/14/2024 2:56:15 PM - Size increased: 12884901888 3/14/2024 2:56:19 PM - Final disk size: 12.3359532356262 GB 3/14/2024 2:56:26 PM - Windows online image generation finished. Image path: C:\Users\Build\Workspace\windows-openstack-imaging-tools\build\test-2\image.vhdx ```
hoppla20 commented 4 months ago

So yeah, works for all cases, can be merged :)