You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated the documentation for the `InstanceCreate` fields `disks` and
`boot_disk` to better clarify what they are and the implications of
configuring them.
Closes#8089.
Copy file name to clipboardExpand all lines: openapi/nexus.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18765,7 +18765,7 @@
18765
18765
},
18766
18766
"boot_disk": {
18767
18767
"nullable": true,
18768
-
"description": "The disk this instance should boot into. This disk can either be attached if it already exists, or created, if it should be a new disk.\n\nIt is strongly recommended to either provide a boot disk at instance creation, or update the instance after creation to set a boot disk.\n\nAn instance without an explicit boot disk can be booted: the options are as managed by UEFI, and as controlled by the guest OS, but with some risk. If this instance later has a disk attached or detached, it is possible that boot options can end up reordered, with the intended boot disk moved after the EFI shell in boot priority. This may result in an instance that only boots to the EFI shell until the desired disk is set as an explicit boot disk and the instance rebooted.",
18768
+
"description": "The disk the instance is configured to boot from.\n\nThis disk can either be attached if it already exists or created along with the instance.\n\nThis attribute cannot be modified on a running instance so it is recommended to configure this attribute during instance creation or when it is acceptable to stop the instance for modification.\n\nAn instance that does not have this attribute configured will use the boot options specified in its UEFI settings, which are controlled by both the instance's UEFI firmware and the guest operating system. Boot options can change as disks are attached and detached to the instance, which may result in an instance that only boots to the EFI shell until this attribute is configured to use a desired boot disk.",
18769
18769
"default": null,
18770
18770
"allOf": [
18771
18771
{
@@ -18777,7 +18777,7 @@
18777
18777
"type": "string"
18778
18778
},
18779
18779
"disks": {
18780
-
"description": "The disks to be created or attached for this instance.",
18780
+
"description": "A list of disks to be attached to the instance.\n\nEach disk can either be attached if it already exists or created along with the instance.\n\nThe ordering of the disks does not guarantee the boot order for the instance. Use the boot_disk attribute to configure the disk the instance should boot from.",
0 commit comments