master
2724 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
Steve Baker
|
1a939105ba |
Capture and log sector sizes
``logical_sectors`` and ``physical_sectors`` sizes are now captured for each hardware info ``disks`` entry, and also logged for ``lsblk`` calls. This will be increasingly useful as storage devices with 4096 byte sector sizes become more common. Change-Id: I80b6b137f6e3071d9b8a4c1abe14416249aed9ac |
||
|
Julia Kreger
|
a81fd068a8 |
CI: Remove metalsmith legacy jobs
Change-Id: Ia299f19f6348c35f6052efc78c7cb6b3093703ba |
||
|
Zuul
|
6a51399ba3 | Merge "Migrate to oslo.utils-based format_inspector" | ||
|
Dmitry Tantsur
|
d8d32d93bd |
Warn when the provided checksum algorithm does not match the detected
I have a case where a user provided the checksum URL with SHA256 checksums, while Metal3 defaulted os_hash_algo to "md5". We're going to change the Metal3 defaults in the next API version, but for now let us issue a clear warning in such case. Closes-Bug: #2085331 Change-Id: Ie4e62a378dc4a2089944f4302df3a8671b7c960f |
||
|
Jay Faulkner
|
4553b5c025 |
Migrate to oslo.utils-based format_inspector
This replaces the copied-in version of format_inspector with the shared version located in oslo.utils. Change-Id: I62b3876f4507f28c8582cd4ba80e9f7c4e0b71ef |
||
|
Doug Goldstein
|
57476cdf29 |
add pyproject.toml to support pip 23.1
pip 23.1 removed the "setup.py install" for projects that do not have their own pyproject.toml by having a hardcoded one within pip. To address that, this change adds the minimal pyproject.toml to enable pbr to be properly used to build editable wheels. See https://pip.pypa.io/en/stable/news/#v23-1 and https://github.com/pypa/pip/issues/8368 for more info. Change-Id: I76c5a8269628c4f081c4627f222c2d535534e832 Signed-off-by: Doug Goldstein <cardoe@cardoe.com> |
||
|
Zuul
|
8d16d2120a | Merge "tox: Drop envdir" | ||
|
Takashi Kajinami
|
2e4936cd49 |
tox: Drop envdir
tox now always recreates an env although the env is shared using envdir
options.
~~~
$ tox -e genpolicy
genpolicy: recreate env because env type changed from
{'name': 'genconfig', 'type': 'VirtualEnvRunner'} to
{'name': 'genpolicy', 'type': 'VirtualEnvRunner'}
~~~
According to the maintainer of tox, this functionality is not intended
to be supported.
https://github.com/tox-dev/tox/issues/425#issuecomment-1011944293
Change-Id: I2cef53e151b9da265989c55e165b7521af32d44d
|
||
|
Zuul
|
a30fea57d7 | Merge "Get rid of pkg_resources" | ||
|
Takashi Kajinami
|
42ea1dbd1a |
Drop dependency on netifaces
The netifaces library was abandoned and archived. Replace it by psutil which is already part of the requirements. Closes-Bug: #2071596 Change-Id: Ibca206ec2af1374199d0c0cfad897dded1298733 |
||
|
Zuul
|
fe98640fa3 | Merge "agent: make _find_routable_addr work with IPv4- and IPv6-only setups" | ||
|
Takashi Kajinami
|
2bf694ee44 |
Get rid of pkg_resources
... because it was removed in Python 3.12 [1]. [1] https://docs.python.org/3/whatsnew/3.12.html#ensurepip Change-Id: I2d27da0db92c1eaae9f45a0905e3eb905a939571 |
||
|
Zuul
|
b44250a1be | Merge "Trivial: fix variable in formatting" | ||
| e4d07fd1ba |
Update master for stable/2024.2
Add file to the reno documentation build to show release notes for stable/2024.2. Use pbr instruction to increment the minor version number automatically so that master versions are higher than the versions on stable/2024.2. Sem-Ver: feature Change-Id: Iffa68c4207e97d92382fbff637a661a879c1909d |
|||
|
Dmitry Tantsur
|
d7b2dcf66f |
Trivial: fix variable in formatting
Change-Id: I6af5e6d2c4781c24345d456cec4d77c364ae2da5 |
||
|
Zuul
|
6d743ad4ba | Merge "[doc] Clarify Step return values" 9.14.0 | ||
|
Zuul
|
ab99f36baa | Merge "Check for the existence of an IPMI device" | ||
|
cid
|
2d79eae382 |
Check for the existence of an IPMI device
Check for IPMI device files before the use of the `'ipmitool lan.*'` command, avoiding unnecessary calls on non-IPMI systems. Closes-Bug: #2076367 Change-Id: Ib800717701e6f2828df55a0da0e999fc014c12e1 |
||
|
Jonas Schäfer
|
def085d2c5 |
agent: make _find_routable_addr work with IPv4- and IPv6-only setups
`gethostbyname` only supports IPv4 lookup. In IPv6-only setups, that does not work. Hence, `gethostbyname` is replaced with `getaddrinfo` which supports both address families. Change-Id: I46f79ef0992b2e6650be9772776c7223e981fc17 |
||
|
Jay Faulkner
|
e303a369dc |
Inspect non-raw images for safety
When IPA gets a non-raw image, it performs an on-the-fly conversion using qemu-img convert, as well as running qemu-img frequently to get basic information about the image before validating it. Now, we ensure that before any qemu-img calls are made, that we have inspected the image for safety and pass through the detected format. If given a disk_format=raw image and image streaming is enabled (default), we retain the existing behavior of not inspecting it in any way and streaming it bit-perfect to the device. In this case, we never use qemu-based tools on the image at all. If given a disk_format=raw image and image streaming is disabled, this change fixes a bug where the image may have been converted if it was not actually raw in the first place. We now stream these bit-perfect to the device. Adds two config options: - [DEFAULT]/disable_deep_image_inspection, which can be set to "True" in order to disable all security features. Do not do this. - [DEFAULT]/permitted_image_formats, default raw,qcow2, for image types IPA should accept. Both of these configuration options are wired up to be set by the lookup data returned by Ironic at lookup time. This uses a image format inspection module imported from Nova; this inspector will eventually live in oslo.utils, at which point we'll migrate our usage of the inspector to it. Closes-Bug: #2071740 Change-Id: I5254b80717cb5a7f9084e3eff32a00b968f987b7 |
||
|
Jay Faulkner
|
ba5c1bfe2a |
Remove and disable examples job
It is not a valid check to import the hwm without it being loaded into IPA first, as objects such as the configuration object won't be loaded yet. Change-Id: Icf20e71e8061bb886885c1b2e29bd13ccac37ade |
||
|
Riccardo Pittau
|
bd3b596ced |
Fix series in release notes
Change-Id: I6844ce33274afdb64e78b79930c8aa32776e7665 |
||
|
Jay Faulkner
|
b173ce9202 |
[doc] Clarify Step return values
Clarifying what we require for a return value in a cleaning step; basically not much. Change-Id: I28c26d5b2d32d7af8d97900eb029741c8dbb166f |
||
|
Doug Goldstein
|
4cea26f185 |
update dynamic-login to mention the sshkey option
The docs mentioned using the SSH key option but didn't say what it was. Added it and reflowed the section to make it more clear that the options are one or the other and the steps that need to happen. Change-Id: I8663379d51e5e946915cb9236ccbccb26660bcc4 |
||
|
Sharpz7
|
b2ec08a15e |
Adding support to view indiv. cpu-core info
Closes-Bug: #1639340 This commit adds the relevant changes to the get_cpu function, keeping it backwards compatible with the old method. Change-Id: I3c3a792e88e9a041236eca7283ebfdf1026910d89.13.0 |
||
|
Jay Faulkner
|
a1773199b7 |
Follow up to broken Zuul config
Change-Id: I64909aa932635b729cc85717dc241ae31798b558 |
||
|
Zuul
|
5fce84fad5 | Merge "Fix versions in release notes" | ||
|
Zuul
|
1893c77918 | Merge "Enable voting for codespell CI" | ||
|
Riccardo Pittau
|
599a825554 |
Fix versions in release notes
Change-Id: Ief6299e4b1bbef5fdb33a28b90b078f420cf8508 |
||
|
Zuul
|
422b1941c7 | Merge "Fix issues caused/found by new codespell" 9.12.0 | ||
|
Jay Faulkner
|
60132c96d1 |
Fix issues caused/found by new codespell
Fixed spelling where appropriate, added ignore where appropriate Change-Id: I07f203d311484321e0dfcbdf02083784693f4b96 |
||
|
cid
|
2c68770182 |
Fix negative lookahead assertion syntax error
Python regexes are deprecated in Zuul, so this commit updates the configuration to use RE2-compatible syntax. Change-Id: I19b81e4999f9c130e18872593df9dccb416e9e6a |
||
|
Jay Faulkner
|
30cb2d7432 |
Enable voting for codespell CI
We've proven the concept, it's a good check, let's enforce it! Change-Id: Ie3a5410066ef628949146f825303934110b19134 Depends-On: https://review.opendev.org/c/openstack/ironic-python-agent/+/920153 |
||
|
Jay Faulkner
|
c39517b044 |
Call evaluate_hardware_support exactly once per hwm
Fixes an issue where we could call evaluate_hardware_support multiple times each run. Now, instead, we cache the values and use the cache where needed. Adds unit test coverage for get_managers and the new method. Fixes issue where we were caching hardware managers between unit tests. Also includes fixes for codespell CI: - skip build files in repo - fix spelling issues introduced to repo Closes-bug: 2066308 Change-Id: Iebc5b6d2440bfc9f23daa322493379bbe69e84d0 |
||
|
Zuul
|
0acaa1e3be | Merge "Remove eventlet workaround" | ||
| c303bd971b |
reno: Update master for unmaintained/zed
Update the zed release notes configuration to build from unmaintained/zed. Change-Id: I673a729e1598d2100631262d61c91690f500306b |
|||
|
Julia Kreger
|
45a16987dc |
Remove eventlet workaround
Per https://review.opendev.org/c/openstack/ironic/+/918082 and contributor recollection, we believe this has been resolved and can thus be removed. Change-Id: Icbf0f095cabf52a7b642cd4a6ddfbd62cc77964e |
||
|
Zuul
|
af907322f6 | Merge "Unmount config drives" | ||
|
Zuul
|
36cf5931d6 | Merge "Remove old excludes" | ||
|
Takashi Kajinami
|
cb58c31c84 |
Remove old excludes
These are detected as errors since the clean up was done[1] in the requirements repository. [1] 314734e938f107cbd5ebcc7af4d9167c11347406 Also remove the note about old pip's behavior because the resolver in recent pip no longer requires specific order. Change-Id: If927d65ff67527cab349e5d5249aa97ef5b0aca4 |
||
|
Julia Kreger
|
6ac3f350c0 |
Unmount config drives
If this seems like deja vu, that is because it is. We had this very same issue with the original CoreOS ramdisk. Since we don't control the whole OS of the ramdisk, it only made sense to teach the agent to umount the folder. The folder is referenced already, and the agent does have safeguards in place, but unfortunately this issue led to a rebuild breaking where cloud-init, glean, and the agent were all trying do the right thing as they thought, and there were just multiple /mnt/config folders present in the OS. These are separate issues we also need to try and remedy. What happens is when the device is locked via a mount, the partition table is never updated to the running OS as the mount creates a lock. So the agent ends up thinking, in the case of a rebuild, that everything including creating a configuration drive on that device has been successful, but when you reboot, there is no partition table entry for the new partition as the change was not successfully written. This state prevented the workload from rebooting properly. This change eliminates that possibility moving forward by attempting to ensure that the cloud configuration folder is no longer mounted. Change-Id: I4399dd0934361003cca9ff95a7e3e3ae9bba3dab |
||
|
Zuul
|
28053644cd | Merge "add mixed matching of root device hints" | ||
|
Zuul
|
2b67f277b7 | Merge "Step to clean UEFI NVRAM entries" | ||
|
Tudor Domnescu
|
ceec5a7367 |
destroy_disk_metadata: support 4096 sector size
A sector size of 512 was assumed and hardcoded, causing dd to fail when it tried to write in chunks smaller than the sector size for disks with 4096 bytes sectors. The size of GPT in sectors also depends on sector size. Change-Id: Ide5318eb503d728cff3221c26bebbd1c214f6995 |
||
|
Adam Rozman
|
84a1195d5a |
add mixed matching of root device hints
This commit introduces the following changes: - New optional `all_serial_and_wwn` argument for the block device listing logic. The new argument makes it possible to collect wwn and serial number information from both lsblk and udevadm at the same time - Both the short and the long serials are collected from udeavadm without prioritization when the new argument has teh value True - The new feature is automatically enabled during block device listing as part of the root disk selecetion - New options are added to the lsblk command when used in the block device discovery process, previously lsblk was not looking for wwn numbers and now it does Closes-Bug: #2061437 Change-Id: I438a686d948cd929311e2f418bb02fb771805148 Signed-off-by: Adam Rozman <adam.rozman@est.tech> |
||
|
Steve Baker
|
215fecd447 |
Step to clean UEFI NVRAM entries
Adds a deploy step ``clean_uefi_nvram`` to remove unrequired extra UEFI NVRAM boot entries. By default any entry matching ``HD`` as the root device, or with a ``shim`` or ``grub`` efi file in the path will be deleted, ensuring that disk based boot entries are removed before the new entry is created for the written image. The ``match_patterns`` parameter allows a list of regular expressions to be passed, where a case insensitive search in the device path will result in that entry being deleted. Closes-Bug: #2041901 Change-Id: I3559dc800fcdfb0322286eba30ce47041419b0c6 |
||
|
Zuul
|
cdd0a83448 | Merge "Import disk_{utils,partitioner} from ironic-lib" | ||
|
Zuul
|
c784ee7cb9 | Merge "Fix mocking for TestGenericHardwareManager" | ||
|
Zuul
|
b6075156b3 | Merge "USB device discovery" | ||
|
Daniel King
|
cae6b15bbc |
Fix mocking for TestGenericHardwareManager
This test class is testing the GenericHardwareManager, but did no mocking for dispatch_to_managers. Therefore, if any of its methods attempted to make a call to that method, it would break the unit tests. This update adds mocking for get_managers to prevent the tests from breaking if a method calls dispatch_to_managers. Additionally, updates test_delete_configuration_skip_list. test_delete_configuration_skip_list mocks get_skip_list_from_node. mocks get_skip_list_from_node. Correcting the return_value from a list to a set to match what is returned from the original method. Related-Bug: 2057668 Change-Id: Ifaa800449b49f64c6ba5779bfae1c8e2c3249903 |