Fix value error for guest_vm_type

This commit is contained in:
Lili Deng 2024-11-20 10:44:45 +08:00 коммит произвёл LiliDeng
Родитель ae3e43e02e
Коммит 9b1b352db2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -55,7 +55,7 @@ class NodeContext:
vm_name: str = ""
kernel_source_path: str = ""
kernel_path: str = ""
guest_vm_type: GuestVmType = GuestVmType.Standard
guest_vm_type: GuestVmType = field(default_factory=lambda: GuestVmType.Standard)
cloud_init_file_path: str = ""
ignition_file_path: str = ""
os_disk_source_file_path: Optional[str] = None