[pve-devel] [PATCH pve-common] JSONSchema: Increase vmid option minimum to 100
Fabian Grünbichler
f.gruenbichler at proxmox.com
Mon Dec 14 13:33:25 CET 2020
On December 14, 2020 12:52 pm, Thomas Lamprecht wrote:
> On 14.12.20 11:20, Dominic Jäger wrote:
>> The API standard_option pve-vmid always checks the format pve-vmid. The format
>> pve-vmid requires the vmid to be >=100. This is correct, because IDs 1-99 are
>> reserved.
>>
>> To display this correctly in the API documentation (API viewer, qm man pages),
>> we have to set the minimum to 100 in the API standard_option.
>>
>> Signed-off-by: Dominic Jäger <d.jaeger at proxmox.com>
>> ---
>> https://forum.proxmox.com/threads/qm-importovf-man-page.80632/
>
> IIRC, we use this somewhere, albeit I'm currently not remembering where.
>
> In any case, both Dietmar and I have the feeling that this will break some
> things. I'd like to avoid that, maybe you could take another look if you find
> some case where values <100 are used for some special handling?
I think the argument is that the associated format already enforces that
the ID is >= 100, so that the API allows less has no practical effect
except confusing users that read the man page/help output/api dump.
we use special reserved VMIDs sometimes when parsing a temp config file,
or when querying the kvm binary by starting a fake VM, but neither the
API schema nor the format are involved in that at all AFAICT.
>> src/PVE/JSONSchema.pm | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/src/PVE/JSONSchema.pm b/src/PVE/JSONSchema.pm
>> index 29ada5b..b4596d3 100644
>> --- a/src/PVE/JSONSchema.pm
>> +++ b/src/PVE/JSONSchema.pm
>> @@ -58,7 +58,7 @@ sub get_standard_option {
>> register_standard_option('pve-vmid', {
>> description => "The (unique) ID of the VM.",
>> type => 'integer', format => 'pve-vmid',
>> - minimum => 1
>> + minimum => 100,
>> });
>>
>> register_standard_option('pve-node', {
>>
>
>
>
>
> _______________________________________________
> pve-devel mailing list
> pve-devel at lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
>
More information about the pve-devel
mailing list