vmadm - Add new options (#9892)

* Add flexible_disk_size and owner_uuid options

* vmadm - add changelog fragment

* Improve descriptions for options
This commit is contained in:
stratacast 2025-03-21 13:04:41 -07:00 committed by GitHub
parent 3922b82a57
commit 579f369ef3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 23 additions and 9 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- vmadm - add new options ``flexible_disk_size`` and ``owner_uuid`` (https://github.com/ansible-collections/community.general/pull/9892).

View file

@ -104,6 +104,12 @@ options:
description: description:
- Enables the firewall, allowing fwadm(1M) rules to be applied. - Enables the firewall, allowing fwadm(1M) rules to be applied.
type: bool type: bool
flexible_disk_size:
required: false
description:
- This sets an upper bound for the amount of space that a bhyve instance may use for its disks and snapshots of those disks (in MiBs).
type: int
version_added: 10.5.0
force: force:
required: false required: false
description: description:
@ -207,6 +213,12 @@ options:
description: description:
- Consider the provisioning complete when the VM first starts, rather than when the VM has rebooted. - Consider the provisioning complete when the VM first starts, rather than when the VM has rebooted.
type: bool type: bool
owner_uuid:
required: false
description:
- Define the UUID of the owner of the VM.
type: str
version_added: 10.5.0
qemu_opts: qemu_opts:
required: false required: false
description: description:
@ -633,9 +645,9 @@ def main():
'str': [ 'str': [
'boot', 'disk_driver', 'dns_domain', 'fs_allowed', 'hostname', 'boot', 'disk_driver', 'dns_domain', 'fs_allowed', 'hostname',
'image_uuid', 'internal_metadata_namespace', 'kernel_version', 'image_uuid', 'internal_metadata_namespace', 'kernel_version',
'limit_priv', 'nic_driver', 'qemu_opts', 'qemu_extra_opts', 'limit_priv', 'nic_driver', 'owner_uuid', 'qemu_opts',
'spice_opts', 'uuid', 'vga', 'zfs_data_compression', 'qemu_extra_opts', 'spice_opts', 'uuid', 'vga',
'zfs_root_compression', 'zpool' 'zfs_data_compression', 'zfs_root_compression', 'zpool'
], ],
'bool': [ 'bool': [
'archive_on_delete', 'autoboot', 'delegate_dataset', 'archive_on_delete', 'autoboot', 'delegate_dataset',
@ -643,12 +655,12 @@ def main():
'indestructible_zoneroot', 'maintain_resolvers', 'nowait' 'indestructible_zoneroot', 'maintain_resolvers', 'nowait'
], ],
'int': [ 'int': [
'cpu_cap', 'cpu_shares', 'max_locked_memory', 'max_lwps', 'cpu_cap', 'cpu_shares', 'flexible_disk_size',
'max_physical_memory', 'max_swap', 'mdata_exec_timeout', 'max_locked_memory', 'max_lwps', 'max_physical_memory',
'quota', 'ram', 'tmpfs', 'vcpus', 'virtio_txburst', 'max_swap', 'mdata_exec_timeout', 'quota', 'ram',
'virtio_txtimer', 'vnc_port', 'zfs_data_recsize', 'tmpfs', 'vcpus', 'virtio_txburst', 'virtio_txtimer',
'zfs_filesystem_limit', 'zfs_io_priority', 'zfs_root_recsize', 'vnc_port', 'zfs_data_recsize', 'zfs_filesystem_limit',
'zfs_snapshot_limit' 'zfs_io_priority', 'zfs_root_recsize', 'zfs_snapshot_limit'
], ],
'dict': ['customer_metadata', 'internal_metadata', 'routes'], 'dict': ['customer_metadata', 'internal_metadata', 'routes'],
} }