{% extends "base.html" %} {% block content %}

VM Configuration

Source: {{ source_filename }}

{% if ovf_path %}
OVA/OVF appliance detected. qm importovf will read the VM configuration from the appliance descriptor. Disks are imported together — individual shrink is not available.
{% elif vmx_config and vmx_config|length > 0 %}
VMware VMX config detected. Settings pre-filled from {{ vmx_config.os_type or 'VM' }} configuration. CPU: {{ vmx_config.cpu_cores or '?' }} cores, RAM: {{ vmx_config.ram_mb or '?' }} MB, Boot: {{ vmx_config.boot_type or 'auto' }}.
{% endif %}
VM Settings
{% if storage_pools %} {% else %} {% endif %}
Disks Found
{% for d in disks %} {% endfor %}
Boot Filename Format Size
{{ d.filename }} {{ d.format }} {{ d.size_gb }} GB
TIP: The disk with the operating system should be the boot disk. Data disks will be attached as additional drives.
{% endblock %}