Semplificazione input del config.

This commit is contained in:
Emiliano Vavassori 2024-09-21 19:11:10 +02:00
parent 208cde637d
commit a56801c04f

View File

@ -7,8 +7,8 @@ template:
config: config:
libvirt:uri: libvirt:uri:
type: String type: String
default: "qemu:///system" default: qemu:///system
description: "QEMU service path" description: QEMU service path
hostname: hostname:
type: String type: String
default: ${PROJECT} default: ${PROJECT}
@ -16,19 +16,19 @@ template:
image: image:
type: String type: String
default: bookworm default: bookworm
description: Image name (see additional_configs.py) description: Image name
vcpu: vcpu:
type: Integer type: Integer
default: 1 default: 1
description: Number of vCPU of the VM description: Virtual Machine vCPU number
ram: ram:
type: Integer type: Integer
default: 2048 default: 2048
description: MBs of RAM of the VM description: RAM (MB)
disksize: disksize:
type: Integer type: Integer
default: 20 default: 20
description: GBs of disk space of the VM description: Disk space (GB)
poolpath: poolpath:
type: String type: String
default: /var/tmp/libvirt/pulumi default: /var/tmp/libvirt/pulumi
@ -36,12 +36,12 @@ template:
username: username:
type: String type: String
default: syntaxerrormmm default: syntaxerrormmm
description: Username to create in the cloud-init phase description: Virtual machine username
password: password:
type: String type: String
default: cicciopasticcio default: cicciopasticcio
description: Password of the username in the cloud-init phase description: Virtual Machine password
playbooks: playbooks:
type: String type: String
default: '' default: ''
description: "Additional playbooks to implement, separate by commas." description: Other playbooks (multi with commas)