mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 10:10:31 -07:00
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:
parent
3922b82a57
commit
579f369ef3
2 changed files with 23 additions and 9 deletions
2
changelogs/fragments/9892-vmadm-add-new-options.yml
Normal file
2
changelogs/fragments/9892-vmadm-add-new-options.yml
Normal 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).
|
|
@ -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'],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue