├── .git-blame-ignore-revs ├── .gitignore ├── .gitreview ├── .pre-commit-config.yaml ├── .stestr.conf ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── bindep.txt ├── doc ├── requirements.txt └── source │ ├── admin │ ├── hardware_managers.rst │ ├── how_it_works.rst │ ├── index.rst │ ├── rescue.rst │ └── troubleshooting.rst │ ├── conf.py │ ├── contributor │ ├── hardware_managers.rst │ ├── index.rst │ ├── metrics.rst │ └── rescue.rst │ ├── index.rst │ └── install │ └── index.rst ├── examples ├── README.rst ├── business-logic │ ├── example_business_logic.py │ ├── setup.cfg │ └── setup.py ├── custom-disk-erase │ ├── example_disk_eraser.py │ ├── setup.cfg │ └── setup.py └── vendor-device │ ├── example_device.py │ ├── setup.cfg │ └── setup.py ├── imagebuild └── README.rst ├── ironic_python_agent ├── __init__.py ├── agent.py ├── api │ ├── __init__.py │ └── app.py ├── burnin.py ├── cmd │ ├── __init__.py │ ├── agent.py │ └── inspect.py ├── config.py ├── device_hints.py ├── disk_partitioner.py ├── disk_utils.py ├── dmi_inspector.py ├── efi_utils.py ├── encoding.py ├── errors.py ├── extensions │ ├── __init__.py │ ├── base.py │ ├── clean.py │ ├── deploy.py │ ├── flow.py │ ├── image.py │ ├── log.py │ ├── poll.py │ ├── rescue.py │ ├── service.py │ ├── standby.py │ └── system.py ├── hardware.py ├── hardware_managers │ ├── __init__.py │ ├── cna.py │ ├── container.py │ ├── mlnx.py │ └── nvidia │ │ └── nvidia_fw_update.py ├── inject_files.py ├── inspect.py ├── inspector.py ├── ironic_api_client.py ├── mdns.py ├── metrics_lib │ ├── __init__.py │ ├── metrics.py │ ├── metrics_collector.py │ ├── metrics_statsd.py │ └── metrics_utils.py ├── netutils.py ├── numa_inspector.py ├── partition_utils.py ├── qemu_img.py ├── raid_utils.py ├── tests │ ├── __init__.py │ ├── functional │ │ ├── __init__.py │ │ ├── base.py │ │ └── test_commands.py │ └── unit │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dmi_inspector_data.py │ │ ├── extensions │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_clean.py │ │ ├── test_deploy.py │ │ ├── test_flow.py │ │ ├── test_image.py │ │ ├── test_log.py │ │ ├── test_poll.py │ │ ├── test_rescue.py │ │ ├── test_service.py │ │ └── test_standby.py │ │ ├── hardware_managers │ │ ├── __init__.py │ │ ├── nvidia │ │ │ ├── __init__.py │ │ │ └── test_nvidia_fw_update.py │ │ ├── test_cna.py │ │ ├── test_container.py │ │ └── test_mlnx.py │ │ ├── metrics_lib │ │ ├── __init__.py │ │ ├── test_metrics.py │ │ ├── test_metrics_collector.py │ │ ├── test_metrics_statsd.py │ │ └── test_metrics_utils.py │ │ ├── samples │ │ └── hardware_samples.py │ │ ├── test_agent.py │ │ ├── test_api.py │ │ ├── test_base.py │ │ ├── test_burnin.py │ │ ├── test_device_hints.py │ │ ├── test_disk_partitioner.py │ │ ├── test_disk_utils.py │ │ ├── test_dmi_inspector.py │ │ ├── test_efi_utils.py │ │ ├── test_encoding.py │ │ ├── test_errors.py │ │ ├── test_hardware.py │ │ ├── test_inject_files.py │ │ ├── test_inspector.py │ │ ├── test_ironic_api_client.py │ │ ├── test_mdns.py │ │ ├── test_multi_hardware.py │ │ ├── test_multi_hardware_clean_steps.py │ │ ├── test_netutils.py │ │ ├── test_numa_inspector.py │ │ ├── test_partition_utils.py │ │ ├── test_qemu_img.py │ │ ├── test_raid_utils.py │ │ ├── test_tls_utils.py │ │ └── test_utils.py ├── tls_utils.py ├── utils.py └── version.py ├── plugin-requirements.txt ├── pyproject.toml ├── releasenotes ├── config.yaml ├── notes │ ├── .placeholder │ ├── 4k-block-size-config-drives-4470828dd06d2600.yaml │ ├── Collect_NIC_name_given_by_BIOS-657c68c0ae16365b.yaml │ ├── LLDP-ignore-NICs-that-are-not-plugged-in-29213f0a701a72e4.yaml │ ├── ability-to-disable-secure-erase-c3223262726d5aff.yaml │ ├── add-block-device-uuid-c8b38264e1688110.yaml │ ├── add-coreos-dhcp-rescue-support-1dd8e9d5ac9c7594.yaml │ ├── add-disk-wait-config-opts-fe805292baca8029.yaml │ ├── add-erase-devices-express-1df107c75f2b3627.yaml │ ├── add-hostname-8bbf24712b6a4919.yaml │ ├── add-inspection-retry-1d385f69607c1452.yaml │ ├── add-is_root_volume-functionality-02340c3887b882e8.yaml │ ├── add-log-extension-35ca22cc0709af4c.yaml │ ├── add-more-lan-channels-8f5197ed5f057c25.yaml │ ├── add-named-logfiles-to-burnin-4388309bf7442d53.yaml │ ├── add-numa-topology-info-8c253fd9e56169f1.yaml │ ├── add-optional-tls-support-3ab6a834154fedec.yaml │ ├── add-pci-devices-info-3f86934a505d1b31.yaml │ ├── add-portal-port-arg-6d4faec2f709c8e9.yaml │ ├── add-secondary-sorting-by-name-for-root-disks-4de2c0358b9a1e2c.yaml │ ├── add-service-steps-support-655cc02d112ed0a8.yaml │ ├── add-smart-test-to-disk-burnin-d02d31e23e5efa9a.yaml │ ├── add-support-for-bootc-70b8a4546b176ab4.yaml │ ├── add-support-for-burnin-gpu-76c8c267529a18bd.yaml │ ├── add-unit-test-cc4a1a05859ad17d.yaml │ ├── add-vendor-info-56be9a8605d80bf0.yaml │ ├── add-vlan-interfaces-cdfeb39d0f3d444d.yaml │ ├── add_burnin_cpu-9acbb36048246a6b.yaml │ ├── add_burnin_disk-12adb5735a41af47.yaml │ ├── add_burnin_dynamic_network_pairing-33e398255050eb98.yaml │ ├── add_burnin_memory-4099ca42bd3b99db.yaml │ ├── add_burnin_network-4856153d21c25f4a.yaml │ ├── add_erase_pstore-b109c58ed8f5d351.yaml │ ├── add_interface_vendor_and_product-74e9815f20ee0cac.yaml │ ├── add_mellanox_hardware_manager-edfae87964737df1.yaml │ ├── additional-wwn-hints-ffd02ceafcb3dc70.yaml │ ├── adds-nvme-secure-erase-0ecfd624e5f50581.yaml │ ├── adds-smartctl-ata-check-to-secure-erase-caebba4f25821575.yaml │ ├── advertise-address-c3b152fe475fb539.yaml │ ├── advertise-protocol-110ae1587f727e62.yaml │ ├── agent-fully-retries-image-downloads-67409a493c6d08ae.yaml │ ├── agent-token-support-1086218cf2a0c917.yaml │ ├── agent_partition_image-91941adc6683c673.yaml │ ├── allows-bootloader-install-failure-to-be-ignored-b99667b13afa9759.yaml │ ├── always-make-sure-config-drive-is-umounted-a3985bbb45e89051.yaml │ ├── append-efi-partition-to-fstab-e9f945a4dd19bd7a.yaml │ ├── apply-raid-aeca7848c6320d6b.yaml │ ├── ataraid_does_not_appear_as_disk-8a260e66b3496bf6.yaml │ ├── attempts-ata-disk-unlock-897d76c494ec2976.yaml │ ├── auto-tls-b52b873663f35618.yaml │ ├── avoid-grub2-using-efibootmgr-bd27c0978d1cf71b.yaml │ ├── bandit-fixes-a971142075b29ca9.yaml │ ├── basic-auth-for-user-image-server-150835e7567444da.yaml │ ├── bindmount-run-4c6a31d3ee4e0ed6.yaml │ ├── block-device-hctl-e81573812be3d469.yaml │ ├── bmc-mac-introspection-e4c2e203d8529710.yaml │ ├── bmo-extra-147559c8d1776e8c.yaml │ ├── boot-info-f18336ada089f6dd.yaml │ ├── bootloader-ignored-uefi-mode-8578a009d5b5be62.yaml │ ├── bug-2010123-d4c38d8f6606d0e0.yaml │ ├── build-tinyipa-with-python3-d4a64aa18f970968.yaml │ ├── build-tinyipa-with-tinycore8-b39d0415b1c25f6b.yaml │ ├── bumpsipalookupattempts-29de7c949aaf6556.yaml │ ├── cache-image-removal-3b5a80a6038a320b.yaml │ ├── capture-early-logging-0f3fa58d75656117.yaml │ ├── change-heartbeat-method-d0119406137022e3.yaml │ ├── check-for-ipmi-device-before-invocation-45b00d15c94edd00.yaml │ ├── check-if-ESP-is-mounted-f9e0eff3609c2668.yaml │ ├── check-partition-table-after-writing-34efbd557d8de7cb.yaml │ ├── check-virtual-media-devices-a9b1f54c3fe7884d.yaml │ ├── checksum-before-considering-download-completed-91cca9fef34d8cf5.yaml │ ├── clarify-heartbeat-connection-errors-2af152bf2d7928e2.yaml │ ├── clean_uefi_nvram-554041f2e7b2d555.yaml │ ├── clock-skew-1fbf542b193cec17.yaml │ ├── coalesce_heartbeats-fb8899a5f9fe4709.yaml │ ├── collect-cpu-sockets-0dbc09a1ebccfe77.yaml │ ├── collect-dmi-output-f2e9feabef16bacf.yaml │ ├── collect-manager-a80bcf370048eeec.yaml │ ├── collect-more-8bc9ad4c63e873e1.yaml │ ├── collect-udev-f6ada5163cf4a26c.yaml │ ├── command_params-869fa547b5be2236.yaml │ ├── configdrive-dup-3fc46a878fe82485.yaml │ ├── configdrive-partuuid-3259cfb7428c1483.yaml │ ├── configdrive-ssl-02b069948dfef814.yaml │ ├── container-poweroff-d9ffb637cf1cee6c.yaml │ ├── content-type-f4d5ab15adf37252.yaml │ ├── coreos-uses-chroot-8a01ba0b38a4a4f4.yaml │ ├── coreos_ipa_image_poweroff_reboot_in_chroot_by_sysrq-42447fc4cdd7dafe.yaml │ ├── correct-uefi-regex-112211c2427cd4d9.yaml │ ├── correction-failure-output-when-downloading-image-39f93838d1ed2928.yaml │ ├── cpu-flags-e3cec7e5cba069ef.yaml │ ├── create_raids_with_volume_name-93e0bb59ef210fe4.yaml │ ├── de-duplicate-by-label-baa090c5b1bff992.yaml │ ├── deprecate-and-vendor-metrics-1df0ca4c865613f8.yaml │ ├── deprecate-coreos-8b01bcf796c0dc54.yaml │ ├── deprecate-prep-partition-support-b80be860deb3c316.yaml │ ├── detect-endianness-f53a6c4571aba3fe.yaml │ ├── device-hints-from-node-object-9a689f5a4175a1a6.yaml │ ├── disable-md5-image-checksum-7def176928d36e75.yaml │ ├── discover-ipv6-bmc-address-b3b357ff6c5d822c.yaml │ ├── disk-label-fix-536897e41a4d817f.yaml │ ├── disk-wait-2e0e85e0947f80e9.yaml │ ├── drop-python2-2006fd8a4a6de56d.yaml │ ├── efi-partuuid-5fe933a462eeede1.yaml │ ├── enable-cleaning-fallback-57e8c9aa2f24e63d.yaml │ ├── enable-skipping-disks-0c4c8b72231715a1.yaml │ ├── enable-skipping-raids-40263cc3a19cfd27.yaml │ ├── enhance-checksum-2256ffdcce13836e.yaml │ ├── erase-deploy-step-3e952fa863bca908.yaml │ ├── erase-device-metadata-clean-step-31b4a615c0ff7f18.yaml │ ├── erase_metadata_from_partitions-4f1902533d530b8f.yaml │ ├── eventlet-removal-1bd8c6c2d5f8a765.yaml │ ├── executes-gpt-partition-fix-b6156cc16da00dfc.yaml │ ├── extend-ipa-lookup-timeout-05ee5b1372792dbe.yaml │ ├── extend-pci-metric-5482284d6a9fe765.yaml │ ├── extend-retry-timeout-30c930a33d97c193.yaml │ ├── fail_ipa_start_if_ironic_api_invalid-7b78fcaba2141cc5.yaml │ ├── fallback-to-findfs-59abde55221e1e84.yaml │ ├── fasttrack-stale-cache-fd93b56a955c7ab1.yaml │ ├── feature-2010228-cf3a59b88f07c3a7.yaml │ ├── fetc-checksum-support-additional-format-4b29c5cdaa6b8d16.yaml │ ├── filter-device-90e90f0814f26b6d.yaml │ ├── findbonds-733c7c91a5665b05.yaml │ ├── fix-agent-determination-of-partition-table-type-3c78bf78266e8cef.yaml │ ├── fix-agent-unable-to-stop-py3-6c210793476968d1.yaml │ ├── fix-auxillarly-node-lookup-argument-83d3f717c039e454.yaml │ ├── fix-bmc-ip-detection-for-coreos-483be0286593e393.yaml │ ├── fix-boot-mode-for-partition-images-f96cf2b3c27b6533.yaml │ ├── fix-bootloader-install-with-mdraid-0a254035df9d0bed.yaml │ ├── fix-bytes-json-serializable-collected-logs-ad61022b287dc3e2.yaml │ ├── fix-clean-config-for-full-device-28ee09b58d97d122.yaml │ ├── fix-cleaning-read-only-device-c8a0f4cc2f434d99.yaml │ ├── fix-coreos-modprobe-75bda45c7bbeb469.yaml │ ├── fix-erasable-devices-check-151da773bcb2be50.yaml │ ├── fix-hardcoded-path-to-grub-7006f29a9ef72e75.yaml │ ├── fix-high-cpu-usage-eventlet-1dccf3b81dd42c47.yaml │ ├── fix-iscsi-teardown-handling-0df2345318d3c843.yaml │ ├── fix-local-boot-for-partition-images-755f570dc0982868.yaml │ ├── fix-mac-permaddr-0bc7d688eee4b814.yaml │ ├── fix-matching-hints-lists-b62254ff8eb4a2c1.yaml │ ├── fix-mlnx-hardware-mgr-never-run-72072580be4d6e7a.yaml │ ├── fix-multipath-parent-device-e85afad63159250c.yaml │ ├── fix-nic-without-numa-node-b401f97c46afa4a1.yaml │ ├── fix-nvidia-hw-mgr-https-38825a4161a8561b.yaml │ ├── fix-nvme-partition-image-handling-b8487133a188fd32.yaml │ ├── fix-nvme-software-raid-race-2e0e104de9611228.yaml │ ├── fix-physical-memory-arm64-957755f6cd91ad85.yaml │ ├── fix-raid-volume-name-ac9013e7b5cf3d46.yaml │ ├── fix-raid_device-not-set-8b03688ce83ce22e.yaml │ ├── fix-reachability-test-7da1c27ad261bbc4.yaml │ ├── fix-rescan-device-7b00c6836b687ce8.yaml │ ├── fix-rescan-device-raid-29aa1558b036b496.yaml │ ├── fix-rescue-mode-heartbeater-stop-8f3a2b1c4d5e6f7g.yaml │ ├── fix-softraid-name-poisoning-4e934dd4e60830b1.yaml │ ├── fix-software-raid-different-devices-3298f735fdbd3a05.yaml │ ├── fix-to-pass-root-uuid-for-whole-disk-image-1c13b70f6b74bce0.yaml │ ├── fix-uefi-boot-entry-creation-for-aarch64-2b143c5bf189c2f6.yaml │ ├── fix-vfd-mount-for-capitalized-device-name-db7f519e900f4e22.yaml │ ├── fix_chronyd_time_sync-626a14b66ca37677.yaml │ ├── fix_efi_uuid_fstab-f2edbee9bfbac64a.yaml │ ├── fix_errors_in_erase_devices_express-f425c76b485a875f.yaml │ ├── fix_partition_cleanup-46491861c930db12.yaml │ ├── fixes-agent-lookup-retries-1b4bb90b8e783aca.yaml │ ├── fixes-centos-fedora-grub2-mkconfig-hang-fe22cde231994044.yaml │ ├── fixes-efibootmgr-character-encoding-19e531ba694824c1.yaml │ ├── fixes-error-handling-of-efibootmgr-not-present-in-ramdisk-f11b4241edcf0e81.yaml │ ├── full-sync-d2ec6b248a73f04a.yaml │ ├── get-holder-disks-with-nvme-7d5fa75df2fd5904.yaml │ ├── get-physical-memory-535a32362bcdf83a.yaml │ ├── get_md_components_by_uuid-7f08d423ea9e7c94.yaml │ ├── get_numa_node-eeab34a92739b6f6.yaml │ ├── handle-configdrive-large-disks-3517e9fcf16c7f39.yaml │ ├── handle-fd0-devices-3d1f31c3b34819e8.yaml │ ├── handle-partuuid-for-fstab-e0aadea20a056982.yaml │ ├── handle-ssl-063a91fb7bdcf9b9.yaml │ ├── heartbeat-jitter-620bbcba591d2894.yaml │ ├── hwmgr-init-8f9c9b6205f64966.yaml │ ├── ignore-grub-efi-fail-dcf7eb07f61f4388.yaml │ ├── image-checksum-39b2ceef40933c28.yaml │ ├── image-download-max-duration-49eb5de0f1c23f52.yaml │ ├── image-download-retries-65ac31fe4328e438.yaml │ ├── image-security-5c23b890409101c9.yaml │ ├── improve-tgtd-status-d17173dc8f67959f.yaml │ ├── inject-files-b411369ce6856dac.yaml │ ├── inspect-to-clean-b3616d843775c187.yaml │ ├── inspect-url-15547d48432cd2b5.yaml │ ├── inspection-409-69d5bd6c2a49d2ec.yaml │ ├── inspection-to-report-disk-by-path-e3fd4c331d200903.yaml │ ├── inspection-wait-for-ips-223e39b65fef31bd.yaml │ ├── inspection-wait-for-ips-v2-146016f758d7010c.yaml │ ├── inspector-logs-9b7c010c219691d2.yaml │ ├── inspector-retry-502-2b286e2ccc64c195.yaml │ ├── instance-info-root-device-02fed0966bb00fb3.yaml │ ├── inventory-conf-29b59ebe97aefbde.yaml │ ├── ip6-addresses-1c2b9bcd9a124de7.yaml │ ├── ipa-debug-68c86101b1fdc3d9.yaml │ ├── ipmi-address-channel-b6b8010c41d05c1b.yaml │ ├── ipmi-cleanup-a4454f6851d81c4d.yaml │ ├── ipv6-bmc-mac-6133fb30c0d4cc5e.yaml │ ├── ipv6-listen-85d40e58156e398f.yaml │ ├── ipv6-provision-42e9000f6f6a7a3a.yaml │ ├── ironic-error-97e76d9ddacff039.yaml │ ├── iscsi-detection-on-diskless-hw-f27dcce3aaa35ac2.yaml │ ├── jitter-for-inspection-command-5a226927757a0308.yaml │ ├── let_crypt_generate_the_salt-99876591325275a1.yaml │ ├── lib-exc-41ee122eb4a04bc4.yaml │ ├── limit-qemu-img-malloc-arena-025ed84115481eae.yaml │ ├── limit-qemu-img-ram-usage-d7b7a16ac5e9c917.yaml │ ├── lldp-error-handling-5b6576b378ef9c3a.yaml │ ├── lldp-loop-fdfa584caf33d847.yaml │ ├── lldp-raw-a09174cb930bca97.yaml │ ├── lockdown-dc656fd26f13321f.yaml │ ├── lockout-command-result-a368187515385270.yaml │ ├── log-download-size-57982fa8df336520.yaml │ ├── log-file-7aaaf31693ddc617.yaml │ ├── logs-collector-non-ascii-010339bf256443c8.yaml │ ├── lsblk-all-956c1df808a169bf.yaml │ ├── lshw-cb89894be057bdc9.yaml │ ├── lshw-for-memory-and-system-info-35c69da067c72b36.yaml │ ├── lshw-no-memory-bank-size-05ea71987362986e.yaml │ ├── manual-introspection-b04b5c25f5e004ac.yaml │ ├── manually-configure-ironic-api-version-517afd0a423036ad.yaml │ ├── md-restart-9e0d47863a086792.yaml │ ├── mdadm-d5b8c186182620b1.yaml │ ├── mdns-e020484e64d76edb.yaml │ ├── min-ironic-ocata-dff80e567783e87c.yaml │ ├── mix-and-match-disk-detection-58db04403ce220a0.yaml │ ├── mlnx-steps-now-available-for-deploy-4a4226ffaae888f3.yaml │ ├── move_swraid_to_efibootmgr-d87c1bfde1661fb5.yaml │ ├── multipath-handling-00a5b412d2cf2e4e.yaml │ ├── multipath-serial-615fc925984abbf7.yaml │ ├── multipath_error_handling_improvement-1669d0de4bfdbe95.yaml │ ├── multiple-lan-channels-ee32d80150f990bf.yaml │ ├── name-root-device-hints-0cfc8c90d03c8bf0.yaml │ ├── net-speed-8854901e2051bb79.yaml │ ├── new-agent-api-afbe7391493749be.yaml │ ├── new-sync-command-6f5fa55df2fd5903.yaml │ ├── no-bash-for-grub-c38369af8cc7cf26.yaml │ ├── no-coreos-3345cc69009dead9.yaml │ ├── no-iscsi-fd21808edbea5ac2.yaml │ ├── no-link-local-2e861978c5c7bf30.yaml │ ├── no-mac-54616606ee6b844d.yaml │ ├── no-netboot-d034bb1d1d9166c5.yaml │ ├── no-retry-disk-space-errors-a24c29b336fd11d9.yaml │ ├── no-sample-ac11bd0fa27af62a.yaml │ ├── no-standalone-bb34eae2cc468837.yaml │ ├── no-zram-78cc6583f4f90a9c.yaml │ ├── old-inspector-data-5e63c9bce72b4fb5.yaml │ ├── only-run-evaluate-hardware-support-once-9ec1ae327b4e03f2.yaml │ ├── oslo-config-generator-b0f70b9fb7e23997.yaml │ ├── parallel-erase-disk-devices-09ea33d5443aead0.yaml │ ├── partition_check_read_only_base_device-5bc15ac2f034aca9.yaml │ ├── permit-pre-hashed-rescue-passwords-4275f6e697533cec.yaml │ ├── pint-0.5-816aaf3a4f6d4a6e.yaml │ ├── poll-mode-063bd36b2b18bffb.yaml │ ├── prefix-lldp-timeout-50acc656313d8dd2.yaml │ ├── prepare-image-49744276cef719d5.yaml │ ├── preserve-efi-folder-contents-ea1e278b3093ec55.yaml │ ├── prevent-deletion-of-shared-disk-filesystems-4c17c7666d2fe3bc.yaml │ ├── prevent-needless-iscsi-cleanup-f8d602c0abc7e8ba.yaml │ ├── prevent-restart-after-rescue-2cdd9cb03c0efb1b.yaml │ ├── prioritize-lsblk-device-serials-8cae406ca5164a01.yaml │ ├── qemu-img-ooo-write-721b8a0057ab7b8a.yaml │ ├── qemu-write-zeros-2edbf3152c57e2b6.yaml │ ├── raid-esp-size-2c322adb2d3b9ce7.yaml │ ├── raid-hints-604f9ffdd86432eb.yaml │ ├── raid5-6-support-0807597c3633a26c.yaml │ ├── readd_missing_devs-2ed85805388b6e42.yaml │ ├── rebuild_on_esp_raid-33f359bdf5ccaa09.yaml │ ├── relax-checksum-feeding-11044ae02b411a07.yaml │ ├── remove-agent-token-required-808e99b83b4456a1.yaml │ ├── remove-lldp-timeout-ea481dbb01a39522.yaml │ ├── remove-py38-15fc164a4a08b764.yaml │ ├── remove-py39-fca5d9e7d2e135cf.yaml │ ├── remove-switch_port_descr-switch_chassis_descr-40f2bb37b5f1fdd1.yaml │ ├── remove-sysrq-2c2804930180f408.yaml │ ├── remove-vendor-passthru-eda3519c322eb4e2.yaml │ ├── report-intf-bus-and-driver-63ed0277b372c1d1.yaml │ ├── rescan-before-checking-uefi-64597c937880134d.yaml │ ├── rescan-device-after-mkfs-3f9d52a2e3b6fff3.yaml │ ├── rescue-dhcp_network-for-tinyipa-a14de5fae38a5dce.yaml │ ├── respect-listen-directives-94fb863c5b692c07.yaml │ ├── rework-ata-secure-erase-c6684962ef078281.yaml │ ├── root-device-hint-tran-48847d86d8cbcfbc.yaml │ ├── root-device-hints-rotational-67e6e61074c26561.yaml │ ├── safeguards_raid_fix-6521157d95aed18f.yaml │ ├── sector_size-b2c0a07086012c17.yaml │ ├── set-clock-prior-to-poweroff-af6ec210aad8b45a.yaml │ ├── several-urls-9c3b8c14338b06ba.yaml │ ├── skip-bmc-detection-with-oob-management-7920f722d53974dc.yaml │ ├── skip-lookup-and-heartbeat-if-apiurl-not-configured-5ae8b04ae1e74673.yaml │ ├── skips-bootloader-install-35c463195aa61800.yaml │ ├── sleep-ebe58fbe07d30219.yaml │ ├── softraid-bootable-with-uefi-aa22e6cbaf1ea747.yaml │ ├── softraid-creation-on-nvme-a2fd4c531d200904.yaml │ ├── softraid-partitioning-refactor-104b817c3bdc73e3.yaml │ ├── softraid-zap-superblocks-anywhere.yaml │ ├── software-raid-4a88e6c5af9ea742.yaml │ ├── software-raid-raid-ESPs-25a2aa117b99620a.yaml │ ├── software-raid-use-label-as-rootfs-uuid-d9a3827180f1a238.yaml │ ├── software_raid_use_rootfs_uuid-9149cc0c8638d5d5.yaml │ ├── start_passing_agent_version_to_ironic-6fa8670ae0e7eb38.yaml │ ├── stream-raw-images-d2e245aaed991d86.yaml │ ├── streaming-partition-images-cdeb260ef8f90012.yaml │ ├── streaming-uuid-fdf136a7745fbb3d.yaml │ ├── support-4096-sector-size-490adc8ed256092d.yaml │ ├── support-bootloader-csv-file-use-c815b520c600cd98.yaml │ ├── support-collecting-ipv6-address-dd819d543f851a63.yaml │ ├── support-image-proxy-e2987a6589375451.yaml │ ├── support-linux-io-6bbd7ff1f0d70a0e.yaml │ ├── support-lldp-in-inventory-4ab6e45ccd35dace.yaml │ ├── support-prep-partitions-5e273572ab7ce018.yaml │ ├── suse-tinyipa-support-20acecd6d7b20952.yaml │ ├── sw-raid-assemble-9c20fe967f73d1dd.yaml │ ├── test-ip-reachability-before-advertise-689f2d3b9276d399.yaml │ ├── timeout_on_file_download-ed77918318316075.yaml │ ├── tinycore-ipv6-1b620c61402b5720.yaml │ ├── tinyipa-python3-default-b8434793e17465db.yaml │ ├── tinyipa-rescue-dhcp-multi-tenant-b32bda7bf2b12679.yaml │ ├── tinyipa-ssh-e8a3a01a3f3ff5f4.yaml │ ├── tls-opts-50d09bddd5f70ef2.yaml │ ├── udev-settle-f75db34db990ad68.yaml │ ├── udevadm-settle-9d3e5f1f20211857.yaml │ ├── uefi-esp-660fc2c650e6af92.yaml │ ├── uefi-fallback-266c647f6aff58fd.yaml │ ├── uefi-images-38c8536db189ffc1.yaml │ ├── understand-node-conflict-is-locked-2ea21dd45abfe4f7.yaml │ ├── up-qemuimg-mem-1536183a02b3a235.yaml │ ├── usb-autodiscovery-ab5a4a40ba096bb8.yaml │ ├── use-latest-coreos-87f826d26b46548d.yaml │ ├── use-system-random-00b0721c8ebd0c5a.yaml │ ├── vmedia-copy-6a58f3183b166c42.yaml │ ├── wait-for-interfaces-before-lookup-9bf38852b2f176a1.yaml │ ├── wait-root-device-504b517c3aec73e2.yaml │ ├── whole-disk-grub-0b1b8b9c44e31d28.yaml │ └── zero-size-78d3be2ac8fd59c2.yaml └── source │ ├── 2023.1.rst │ ├── 2023.2.rst │ ├── 2024.1.rst │ ├── 2024.2.rst │ ├── 2025.1.rst │ ├── 2025.2.rst │ ├── _static │ └── .placeholder │ ├── _templates │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── liberty.rst │ ├── mitaka.rst │ ├── newton.rst │ ├── ocata.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ ├── victoria.rst │ ├── wallaby.rst │ ├── xena.rst │ ├── yoga.rst │ └── zed.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tools ├── bandit.yml ├── config │ ├── check_uptodate.sh │ └── ipa-config-generator.conf ├── run_bashate.sh └── with_venv.sh ├── tox.ini └── zuul.d ├── ironic-python-agent-jobs.yaml └── project.yaml /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/.gitreview -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.stestr.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | test_path=${OS_TEST_PATH:-./ironic_python_agent/tests/unit} 3 | top_dir=./ 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/bindep.txt -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/admin/hardware_managers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/admin/hardware_managers.rst -------------------------------------------------------------------------------- /doc/source/admin/how_it_works.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/admin/how_it_works.rst -------------------------------------------------------------------------------- /doc/source/admin/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/admin/index.rst -------------------------------------------------------------------------------- /doc/source/admin/rescue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/admin/rescue.rst -------------------------------------------------------------------------------- /doc/source/admin/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/admin/troubleshooting.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contributor/hardware_managers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/contributor/hardware_managers.rst -------------------------------------------------------------------------------- /doc/source/contributor/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/contributor/index.rst -------------------------------------------------------------------------------- /doc/source/contributor/metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/contributor/metrics.rst -------------------------------------------------------------------------------- /doc/source/contributor/rescue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/contributor/rescue.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/install/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/doc/source/install/index.rst -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/business-logic/example_business_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/business-logic/example_business_logic.py -------------------------------------------------------------------------------- /examples/business-logic/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/business-logic/setup.cfg -------------------------------------------------------------------------------- /examples/business-logic/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/business-logic/setup.py -------------------------------------------------------------------------------- /examples/custom-disk-erase/example_disk_eraser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/custom-disk-erase/example_disk_eraser.py -------------------------------------------------------------------------------- /examples/custom-disk-erase/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/custom-disk-erase/setup.cfg -------------------------------------------------------------------------------- /examples/custom-disk-erase/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/custom-disk-erase/setup.py -------------------------------------------------------------------------------- /examples/vendor-device/example_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/vendor-device/example_device.py -------------------------------------------------------------------------------- /examples/vendor-device/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/vendor-device/setup.cfg -------------------------------------------------------------------------------- /examples/vendor-device/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/examples/vendor-device/setup.py -------------------------------------------------------------------------------- /imagebuild/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/imagebuild/README.rst -------------------------------------------------------------------------------- /ironic_python_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/agent.py -------------------------------------------------------------------------------- /ironic_python_agent/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/api/app.py -------------------------------------------------------------------------------- /ironic_python_agent/burnin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/burnin.py -------------------------------------------------------------------------------- /ironic_python_agent/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/cmd/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/cmd/agent.py -------------------------------------------------------------------------------- /ironic_python_agent/cmd/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/cmd/inspect.py -------------------------------------------------------------------------------- /ironic_python_agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/config.py -------------------------------------------------------------------------------- /ironic_python_agent/device_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/device_hints.py -------------------------------------------------------------------------------- /ironic_python_agent/disk_partitioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/disk_partitioner.py -------------------------------------------------------------------------------- /ironic_python_agent/disk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/disk_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/dmi_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/dmi_inspector.py -------------------------------------------------------------------------------- /ironic_python_agent/efi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/efi_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/encoding.py -------------------------------------------------------------------------------- /ironic_python_agent/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/errors.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/extensions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/base.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/clean.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/deploy.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/flow.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/image.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/log.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/poll.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/rescue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/rescue.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/service.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/standby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/standby.py -------------------------------------------------------------------------------- /ironic_python_agent/extensions/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/extensions/system.py -------------------------------------------------------------------------------- /ironic_python_agent/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/hardware.py -------------------------------------------------------------------------------- /ironic_python_agent/hardware_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/hardware_managers/cna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/hardware_managers/cna.py -------------------------------------------------------------------------------- /ironic_python_agent/hardware_managers/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/hardware_managers/container.py -------------------------------------------------------------------------------- /ironic_python_agent/hardware_managers/mlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/hardware_managers/mlnx.py -------------------------------------------------------------------------------- /ironic_python_agent/hardware_managers/nvidia/nvidia_fw_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/hardware_managers/nvidia/nvidia_fw_update.py -------------------------------------------------------------------------------- /ironic_python_agent/inject_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/inject_files.py -------------------------------------------------------------------------------- /ironic_python_agent/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/inspect.py -------------------------------------------------------------------------------- /ironic_python_agent/inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/inspector.py -------------------------------------------------------------------------------- /ironic_python_agent/ironic_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/ironic_api_client.py -------------------------------------------------------------------------------- /ironic_python_agent/mdns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/mdns.py -------------------------------------------------------------------------------- /ironic_python_agent/metrics_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/metrics_lib/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/metrics_lib/metrics.py -------------------------------------------------------------------------------- /ironic_python_agent/metrics_lib/metrics_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/metrics_lib/metrics_collector.py -------------------------------------------------------------------------------- /ironic_python_agent/metrics_lib/metrics_statsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/metrics_lib/metrics_statsd.py -------------------------------------------------------------------------------- /ironic_python_agent/metrics_lib/metrics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/metrics_lib/metrics_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/netutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/netutils.py -------------------------------------------------------------------------------- /ironic_python_agent/numa_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/numa_inspector.py -------------------------------------------------------------------------------- /ironic_python_agent/partition_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/partition_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/qemu_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/qemu_img.py -------------------------------------------------------------------------------- /ironic_python_agent/raid_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/raid_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/tests/functional/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/functional/base.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/functional/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/functional/test_commands.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/base.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/dmi_inspector_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/dmi_inspector_data.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_base.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_clean.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_deploy.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_flow.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_image.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_log.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_poll.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_rescue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_rescue.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_service.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/extensions/test_standby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/extensions/test_standby.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/hardware_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/hardware_managers/nvidia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/hardware_managers/nvidia/test_nvidia_fw_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/hardware_managers/nvidia/test_nvidia_fw_update.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/hardware_managers/test_cna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/hardware_managers/test_cna.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/hardware_managers/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/hardware_managers/test_container.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/hardware_managers/test_mlnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/hardware_managers/test_mlnx.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/metrics_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/metrics_lib/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/metrics_lib/test_metrics.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/metrics_lib/test_metrics_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/metrics_lib/test_metrics_collector.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/metrics_lib/test_metrics_statsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/metrics_lib/test_metrics_statsd.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/metrics_lib/test_metrics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/metrics_lib/test_metrics_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/samples/hardware_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/samples/hardware_samples.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_agent.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_api.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_base.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_burnin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_burnin.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_device_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_device_hints.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_disk_partitioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_disk_partitioner.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_disk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_disk_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_dmi_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_dmi_inspector.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_efi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_efi_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_encoding.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_errors.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_hardware.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_inject_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_inject_files.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_inspector.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_ironic_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_ironic_api_client.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_mdns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_mdns.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_multi_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_multi_hardware.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_multi_hardware_clean_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_multi_hardware_clean_steps.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_netutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_netutils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_numa_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_numa_inspector.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_partition_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_partition_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_qemu_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_qemu_img.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_raid_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_raid_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_tls_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_tls_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tests/unit/test_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/tls_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/tls_utils.py -------------------------------------------------------------------------------- /ironic_python_agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/utils.py -------------------------------------------------------------------------------- /ironic_python_agent/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/ironic_python_agent/version.py -------------------------------------------------------------------------------- /plugin-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/plugin-requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /releasenotes/config.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | closed_branch_tag_re: 'r"(?!^(bugfix-)).+-eo[lm]"' 3 | -------------------------------------------------------------------------------- /releasenotes/notes/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/notes/4k-block-size-config-drives-4470828dd06d2600.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/4k-block-size-config-drives-4470828dd06d2600.yaml -------------------------------------------------------------------------------- /releasenotes/notes/Collect_NIC_name_given_by_BIOS-657c68c0ae16365b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/Collect_NIC_name_given_by_BIOS-657c68c0ae16365b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/LLDP-ignore-NICs-that-are-not-plugged-in-29213f0a701a72e4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/LLDP-ignore-NICs-that-are-not-plugged-in-29213f0a701a72e4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ability-to-disable-secure-erase-c3223262726d5aff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ability-to-disable-secure-erase-c3223262726d5aff.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-block-device-uuid-c8b38264e1688110.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-block-device-uuid-c8b38264e1688110.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-coreos-dhcp-rescue-support-1dd8e9d5ac9c7594.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-coreos-dhcp-rescue-support-1dd8e9d5ac9c7594.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-disk-wait-config-opts-fe805292baca8029.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-disk-wait-config-opts-fe805292baca8029.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-erase-devices-express-1df107c75f2b3627.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-erase-devices-express-1df107c75f2b3627.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-hostname-8bbf24712b6a4919.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-hostname-8bbf24712b6a4919.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-inspection-retry-1d385f69607c1452.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-inspection-retry-1d385f69607c1452.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-is_root_volume-functionality-02340c3887b882e8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-is_root_volume-functionality-02340c3887b882e8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-log-extension-35ca22cc0709af4c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-log-extension-35ca22cc0709af4c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-more-lan-channels-8f5197ed5f057c25.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-more-lan-channels-8f5197ed5f057c25.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-named-logfiles-to-burnin-4388309bf7442d53.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-named-logfiles-to-burnin-4388309bf7442d53.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-numa-topology-info-8c253fd9e56169f1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-numa-topology-info-8c253fd9e56169f1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-optional-tls-support-3ab6a834154fedec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-optional-tls-support-3ab6a834154fedec.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-pci-devices-info-3f86934a505d1b31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-pci-devices-info-3f86934a505d1b31.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-portal-port-arg-6d4faec2f709c8e9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-portal-port-arg-6d4faec2f709c8e9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-secondary-sorting-by-name-for-root-disks-4de2c0358b9a1e2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-secondary-sorting-by-name-for-root-disks-4de2c0358b9a1e2c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-service-steps-support-655cc02d112ed0a8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-service-steps-support-655cc02d112ed0a8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-smart-test-to-disk-burnin-d02d31e23e5efa9a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-smart-test-to-disk-burnin-d02d31e23e5efa9a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-support-for-bootc-70b8a4546b176ab4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-support-for-bootc-70b8a4546b176ab4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-support-for-burnin-gpu-76c8c267529a18bd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-support-for-burnin-gpu-76c8c267529a18bd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-unit-test-cc4a1a05859ad17d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-unit-test-cc4a1a05859ad17d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-vendor-info-56be9a8605d80bf0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-vendor-info-56be9a8605d80bf0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add-vlan-interfaces-cdfeb39d0f3d444d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add-vlan-interfaces-cdfeb39d0f3d444d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_burnin_cpu-9acbb36048246a6b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_burnin_cpu-9acbb36048246a6b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_burnin_disk-12adb5735a41af47.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_burnin_disk-12adb5735a41af47.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_burnin_dynamic_network_pairing-33e398255050eb98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_burnin_dynamic_network_pairing-33e398255050eb98.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_burnin_memory-4099ca42bd3b99db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_burnin_memory-4099ca42bd3b99db.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_burnin_network-4856153d21c25f4a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_burnin_network-4856153d21c25f4a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_erase_pstore-b109c58ed8f5d351.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_erase_pstore-b109c58ed8f5d351.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_interface_vendor_and_product-74e9815f20ee0cac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_interface_vendor_and_product-74e9815f20ee0cac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/add_mellanox_hardware_manager-edfae87964737df1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/add_mellanox_hardware_manager-edfae87964737df1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/additional-wwn-hints-ffd02ceafcb3dc70.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/additional-wwn-hints-ffd02ceafcb3dc70.yaml -------------------------------------------------------------------------------- /releasenotes/notes/adds-nvme-secure-erase-0ecfd624e5f50581.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/adds-nvme-secure-erase-0ecfd624e5f50581.yaml -------------------------------------------------------------------------------- /releasenotes/notes/adds-smartctl-ata-check-to-secure-erase-caebba4f25821575.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/adds-smartctl-ata-check-to-secure-erase-caebba4f25821575.yaml -------------------------------------------------------------------------------- /releasenotes/notes/advertise-address-c3b152fe475fb539.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/advertise-address-c3b152fe475fb539.yaml -------------------------------------------------------------------------------- /releasenotes/notes/advertise-protocol-110ae1587f727e62.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/advertise-protocol-110ae1587f727e62.yaml -------------------------------------------------------------------------------- /releasenotes/notes/agent-fully-retries-image-downloads-67409a493c6d08ae.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/agent-fully-retries-image-downloads-67409a493c6d08ae.yaml -------------------------------------------------------------------------------- /releasenotes/notes/agent-token-support-1086218cf2a0c917.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/agent-token-support-1086218cf2a0c917.yaml -------------------------------------------------------------------------------- /releasenotes/notes/agent_partition_image-91941adc6683c673.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/agent_partition_image-91941adc6683c673.yaml -------------------------------------------------------------------------------- /releasenotes/notes/allows-bootloader-install-failure-to-be-ignored-b99667b13afa9759.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/allows-bootloader-install-failure-to-be-ignored-b99667b13afa9759.yaml -------------------------------------------------------------------------------- /releasenotes/notes/always-make-sure-config-drive-is-umounted-a3985bbb45e89051.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/always-make-sure-config-drive-is-umounted-a3985bbb45e89051.yaml -------------------------------------------------------------------------------- /releasenotes/notes/append-efi-partition-to-fstab-e9f945a4dd19bd7a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/append-efi-partition-to-fstab-e9f945a4dd19bd7a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/apply-raid-aeca7848c6320d6b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/apply-raid-aeca7848c6320d6b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ataraid_does_not_appear_as_disk-8a260e66b3496bf6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ataraid_does_not_appear_as_disk-8a260e66b3496bf6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/attempts-ata-disk-unlock-897d76c494ec2976.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/attempts-ata-disk-unlock-897d76c494ec2976.yaml -------------------------------------------------------------------------------- /releasenotes/notes/auto-tls-b52b873663f35618.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/auto-tls-b52b873663f35618.yaml -------------------------------------------------------------------------------- /releasenotes/notes/avoid-grub2-using-efibootmgr-bd27c0978d1cf71b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/avoid-grub2-using-efibootmgr-bd27c0978d1cf71b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bandit-fixes-a971142075b29ca9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/bandit-fixes-a971142075b29ca9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/basic-auth-for-user-image-server-150835e7567444da.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/basic-auth-for-user-image-server-150835e7567444da.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bindmount-run-4c6a31d3ee4e0ed6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/bindmount-run-4c6a31d3ee4e0ed6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/block-device-hctl-e81573812be3d469.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/block-device-hctl-e81573812be3d469.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bmc-mac-introspection-e4c2e203d8529710.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/bmc-mac-introspection-e4c2e203d8529710.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bmo-extra-147559c8d1776e8c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/bmo-extra-147559c8d1776e8c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/boot-info-f18336ada089f6dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/boot-info-f18336ada089f6dd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bootloader-ignored-uefi-mode-8578a009d5b5be62.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/bootloader-ignored-uefi-mode-8578a009d5b5be62.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bug-2010123-d4c38d8f6606d0e0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/bug-2010123-d4c38d8f6606d0e0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/build-tinyipa-with-python3-d4a64aa18f970968.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/build-tinyipa-with-python3-d4a64aa18f970968.yaml -------------------------------------------------------------------------------- /releasenotes/notes/build-tinyipa-with-tinycore8-b39d0415b1c25f6b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/build-tinyipa-with-tinycore8-b39d0415b1c25f6b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/bumpsipalookupattempts-29de7c949aaf6556.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/bumpsipalookupattempts-29de7c949aaf6556.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cache-image-removal-3b5a80a6038a320b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/cache-image-removal-3b5a80a6038a320b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/capture-early-logging-0f3fa58d75656117.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/capture-early-logging-0f3fa58d75656117.yaml -------------------------------------------------------------------------------- /releasenotes/notes/change-heartbeat-method-d0119406137022e3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/change-heartbeat-method-d0119406137022e3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/check-for-ipmi-device-before-invocation-45b00d15c94edd00.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/check-for-ipmi-device-before-invocation-45b00d15c94edd00.yaml -------------------------------------------------------------------------------- /releasenotes/notes/check-if-ESP-is-mounted-f9e0eff3609c2668.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/check-if-ESP-is-mounted-f9e0eff3609c2668.yaml -------------------------------------------------------------------------------- /releasenotes/notes/check-partition-table-after-writing-34efbd557d8de7cb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/check-partition-table-after-writing-34efbd557d8de7cb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/check-virtual-media-devices-a9b1f54c3fe7884d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/check-virtual-media-devices-a9b1f54c3fe7884d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/checksum-before-considering-download-completed-91cca9fef34d8cf5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/checksum-before-considering-download-completed-91cca9fef34d8cf5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/clarify-heartbeat-connection-errors-2af152bf2d7928e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/clarify-heartbeat-connection-errors-2af152bf2d7928e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/clean_uefi_nvram-554041f2e7b2d555.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/clean_uefi_nvram-554041f2e7b2d555.yaml -------------------------------------------------------------------------------- /releasenotes/notes/clock-skew-1fbf542b193cec17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/clock-skew-1fbf542b193cec17.yaml -------------------------------------------------------------------------------- /releasenotes/notes/coalesce_heartbeats-fb8899a5f9fe4709.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/coalesce_heartbeats-fb8899a5f9fe4709.yaml -------------------------------------------------------------------------------- /releasenotes/notes/collect-cpu-sockets-0dbc09a1ebccfe77.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/collect-cpu-sockets-0dbc09a1ebccfe77.yaml -------------------------------------------------------------------------------- /releasenotes/notes/collect-dmi-output-f2e9feabef16bacf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/collect-dmi-output-f2e9feabef16bacf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/collect-manager-a80bcf370048eeec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/collect-manager-a80bcf370048eeec.yaml -------------------------------------------------------------------------------- /releasenotes/notes/collect-more-8bc9ad4c63e873e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/collect-more-8bc9ad4c63e873e1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/collect-udev-f6ada5163cf4a26c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/collect-udev-f6ada5163cf4a26c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/command_params-869fa547b5be2236.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/command_params-869fa547b5be2236.yaml -------------------------------------------------------------------------------- /releasenotes/notes/configdrive-dup-3fc46a878fe82485.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/configdrive-dup-3fc46a878fe82485.yaml -------------------------------------------------------------------------------- /releasenotes/notes/configdrive-partuuid-3259cfb7428c1483.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/configdrive-partuuid-3259cfb7428c1483.yaml -------------------------------------------------------------------------------- /releasenotes/notes/configdrive-ssl-02b069948dfef814.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/configdrive-ssl-02b069948dfef814.yaml -------------------------------------------------------------------------------- /releasenotes/notes/container-poweroff-d9ffb637cf1cee6c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/container-poweroff-d9ffb637cf1cee6c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/content-type-f4d5ab15adf37252.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/content-type-f4d5ab15adf37252.yaml -------------------------------------------------------------------------------- /releasenotes/notes/coreos-uses-chroot-8a01ba0b38a4a4f4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/coreos-uses-chroot-8a01ba0b38a4a4f4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/coreos_ipa_image_poweroff_reboot_in_chroot_by_sysrq-42447fc4cdd7dafe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/coreos_ipa_image_poweroff_reboot_in_chroot_by_sysrq-42447fc4cdd7dafe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/correct-uefi-regex-112211c2427cd4d9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/correct-uefi-regex-112211c2427cd4d9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/correction-failure-output-when-downloading-image-39f93838d1ed2928.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/correction-failure-output-when-downloading-image-39f93838d1ed2928.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cpu-flags-e3cec7e5cba069ef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/cpu-flags-e3cec7e5cba069ef.yaml -------------------------------------------------------------------------------- /releasenotes/notes/create_raids_with_volume_name-93e0bb59ef210fe4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/create_raids_with_volume_name-93e0bb59ef210fe4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/de-duplicate-by-label-baa090c5b1bff992.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/de-duplicate-by-label-baa090c5b1bff992.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-and-vendor-metrics-1df0ca4c865613f8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/deprecate-and-vendor-metrics-1df0ca4c865613f8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-coreos-8b01bcf796c0dc54.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/deprecate-coreos-8b01bcf796c0dc54.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecate-prep-partition-support-b80be860deb3c316.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/deprecate-prep-partition-support-b80be860deb3c316.yaml -------------------------------------------------------------------------------- /releasenotes/notes/detect-endianness-f53a6c4571aba3fe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/detect-endianness-f53a6c4571aba3fe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/device-hints-from-node-object-9a689f5a4175a1a6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/device-hints-from-node-object-9a689f5a4175a1a6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/disable-md5-image-checksum-7def176928d36e75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/disable-md5-image-checksum-7def176928d36e75.yaml -------------------------------------------------------------------------------- /releasenotes/notes/discover-ipv6-bmc-address-b3b357ff6c5d822c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/discover-ipv6-bmc-address-b3b357ff6c5d822c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/disk-label-fix-536897e41a4d817f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/disk-label-fix-536897e41a4d817f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/disk-wait-2e0e85e0947f80e9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/disk-wait-2e0e85e0947f80e9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/drop-python2-2006fd8a4a6de56d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/drop-python2-2006fd8a4a6de56d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/efi-partuuid-5fe933a462eeede1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/efi-partuuid-5fe933a462eeede1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enable-cleaning-fallback-57e8c9aa2f24e63d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/enable-cleaning-fallback-57e8c9aa2f24e63d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enable-skipping-disks-0c4c8b72231715a1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/enable-skipping-disks-0c4c8b72231715a1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enable-skipping-raids-40263cc3a19cfd27.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/enable-skipping-raids-40263cc3a19cfd27.yaml -------------------------------------------------------------------------------- /releasenotes/notes/enhance-checksum-2256ffdcce13836e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/enhance-checksum-2256ffdcce13836e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/erase-deploy-step-3e952fa863bca908.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/erase-deploy-step-3e952fa863bca908.yaml -------------------------------------------------------------------------------- /releasenotes/notes/erase-device-metadata-clean-step-31b4a615c0ff7f18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/erase-device-metadata-clean-step-31b4a615c0ff7f18.yaml -------------------------------------------------------------------------------- /releasenotes/notes/erase_metadata_from_partitions-4f1902533d530b8f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/erase_metadata_from_partitions-4f1902533d530b8f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/eventlet-removal-1bd8c6c2d5f8a765.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/eventlet-removal-1bd8c6c2d5f8a765.yaml -------------------------------------------------------------------------------- /releasenotes/notes/executes-gpt-partition-fix-b6156cc16da00dfc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/executes-gpt-partition-fix-b6156cc16da00dfc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/extend-ipa-lookup-timeout-05ee5b1372792dbe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/extend-ipa-lookup-timeout-05ee5b1372792dbe.yaml -------------------------------------------------------------------------------- /releasenotes/notes/extend-pci-metric-5482284d6a9fe765.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/extend-pci-metric-5482284d6a9fe765.yaml -------------------------------------------------------------------------------- /releasenotes/notes/extend-retry-timeout-30c930a33d97c193.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/extend-retry-timeout-30c930a33d97c193.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fail_ipa_start_if_ironic_api_invalid-7b78fcaba2141cc5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fail_ipa_start_if_ironic_api_invalid-7b78fcaba2141cc5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fallback-to-findfs-59abde55221e1e84.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fallback-to-findfs-59abde55221e1e84.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fasttrack-stale-cache-fd93b56a955c7ab1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fasttrack-stale-cache-fd93b56a955c7ab1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/feature-2010228-cf3a59b88f07c3a7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/feature-2010228-cf3a59b88f07c3a7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fetc-checksum-support-additional-format-4b29c5cdaa6b8d16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fetc-checksum-support-additional-format-4b29c5cdaa6b8d16.yaml -------------------------------------------------------------------------------- /releasenotes/notes/filter-device-90e90f0814f26b6d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/filter-device-90e90f0814f26b6d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/findbonds-733c7c91a5665b05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/findbonds-733c7c91a5665b05.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-agent-determination-of-partition-table-type-3c78bf78266e8cef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-agent-determination-of-partition-table-type-3c78bf78266e8cef.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-agent-unable-to-stop-py3-6c210793476968d1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-agent-unable-to-stop-py3-6c210793476968d1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-auxillarly-node-lookup-argument-83d3f717c039e454.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-auxillarly-node-lookup-argument-83d3f717c039e454.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-bmc-ip-detection-for-coreos-483be0286593e393.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-bmc-ip-detection-for-coreos-483be0286593e393.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-boot-mode-for-partition-images-f96cf2b3c27b6533.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-boot-mode-for-partition-images-f96cf2b3c27b6533.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-bootloader-install-with-mdraid-0a254035df9d0bed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-bootloader-install-with-mdraid-0a254035df9d0bed.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-bytes-json-serializable-collected-logs-ad61022b287dc3e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-bytes-json-serializable-collected-logs-ad61022b287dc3e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-clean-config-for-full-device-28ee09b58d97d122.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-clean-config-for-full-device-28ee09b58d97d122.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-cleaning-read-only-device-c8a0f4cc2f434d99.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-cleaning-read-only-device-c8a0f4cc2f434d99.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-coreos-modprobe-75bda45c7bbeb469.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-coreos-modprobe-75bda45c7bbeb469.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-erasable-devices-check-151da773bcb2be50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-erasable-devices-check-151da773bcb2be50.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-hardcoded-path-to-grub-7006f29a9ef72e75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-hardcoded-path-to-grub-7006f29a9ef72e75.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-high-cpu-usage-eventlet-1dccf3b81dd42c47.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-high-cpu-usage-eventlet-1dccf3b81dd42c47.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-iscsi-teardown-handling-0df2345318d3c843.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-iscsi-teardown-handling-0df2345318d3c843.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-local-boot-for-partition-images-755f570dc0982868.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-local-boot-for-partition-images-755f570dc0982868.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-mac-permaddr-0bc7d688eee4b814.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-mac-permaddr-0bc7d688eee4b814.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-matching-hints-lists-b62254ff8eb4a2c1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-matching-hints-lists-b62254ff8eb4a2c1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-mlnx-hardware-mgr-never-run-72072580be4d6e7a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-mlnx-hardware-mgr-never-run-72072580be4d6e7a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-multipath-parent-device-e85afad63159250c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-multipath-parent-device-e85afad63159250c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-nic-without-numa-node-b401f97c46afa4a1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-nic-without-numa-node-b401f97c46afa4a1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-nvidia-hw-mgr-https-38825a4161a8561b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-nvidia-hw-mgr-https-38825a4161a8561b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-nvme-partition-image-handling-b8487133a188fd32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-nvme-partition-image-handling-b8487133a188fd32.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-nvme-software-raid-race-2e0e104de9611228.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-nvme-software-raid-race-2e0e104de9611228.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-physical-memory-arm64-957755f6cd91ad85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-physical-memory-arm64-957755f6cd91ad85.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-raid-volume-name-ac9013e7b5cf3d46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-raid-volume-name-ac9013e7b5cf3d46.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-raid_device-not-set-8b03688ce83ce22e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-raid_device-not-set-8b03688ce83ce22e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-reachability-test-7da1c27ad261bbc4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-reachability-test-7da1c27ad261bbc4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-rescan-device-7b00c6836b687ce8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-rescan-device-7b00c6836b687ce8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-rescan-device-raid-29aa1558b036b496.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-rescan-device-raid-29aa1558b036b496.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-rescue-mode-heartbeater-stop-8f3a2b1c4d5e6f7g.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-rescue-mode-heartbeater-stop-8f3a2b1c4d5e6f7g.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-softraid-name-poisoning-4e934dd4e60830b1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-softraid-name-poisoning-4e934dd4e60830b1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-software-raid-different-devices-3298f735fdbd3a05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-software-raid-different-devices-3298f735fdbd3a05.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-to-pass-root-uuid-for-whole-disk-image-1c13b70f6b74bce0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-to-pass-root-uuid-for-whole-disk-image-1c13b70f6b74bce0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-uefi-boot-entry-creation-for-aarch64-2b143c5bf189c2f6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-uefi-boot-entry-creation-for-aarch64-2b143c5bf189c2f6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix-vfd-mount-for-capitalized-device-name-db7f519e900f4e22.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix-vfd-mount-for-capitalized-device-name-db7f519e900f4e22.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix_chronyd_time_sync-626a14b66ca37677.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix_chronyd_time_sync-626a14b66ca37677.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix_efi_uuid_fstab-f2edbee9bfbac64a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix_efi_uuid_fstab-f2edbee9bfbac64a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix_errors_in_erase_devices_express-f425c76b485a875f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix_errors_in_erase_devices_express-f425c76b485a875f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fix_partition_cleanup-46491861c930db12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fix_partition_cleanup-46491861c930db12.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fixes-agent-lookup-retries-1b4bb90b8e783aca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fixes-agent-lookup-retries-1b4bb90b8e783aca.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fixes-centos-fedora-grub2-mkconfig-hang-fe22cde231994044.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fixes-centos-fedora-grub2-mkconfig-hang-fe22cde231994044.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fixes-efibootmgr-character-encoding-19e531ba694824c1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fixes-efibootmgr-character-encoding-19e531ba694824c1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/fixes-error-handling-of-efibootmgr-not-present-in-ramdisk-f11b4241edcf0e81.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/fixes-error-handling-of-efibootmgr-not-present-in-ramdisk-f11b4241edcf0e81.yaml -------------------------------------------------------------------------------- /releasenotes/notes/full-sync-d2ec6b248a73f04a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/full-sync-d2ec6b248a73f04a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/get-holder-disks-with-nvme-7d5fa75df2fd5904.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/get-holder-disks-with-nvme-7d5fa75df2fd5904.yaml -------------------------------------------------------------------------------- /releasenotes/notes/get-physical-memory-535a32362bcdf83a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/get-physical-memory-535a32362bcdf83a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/get_md_components_by_uuid-7f08d423ea9e7c94.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/get_md_components_by_uuid-7f08d423ea9e7c94.yaml -------------------------------------------------------------------------------- /releasenotes/notes/get_numa_node-eeab34a92739b6f6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/get_numa_node-eeab34a92739b6f6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/handle-configdrive-large-disks-3517e9fcf16c7f39.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/handle-configdrive-large-disks-3517e9fcf16c7f39.yaml -------------------------------------------------------------------------------- /releasenotes/notes/handle-fd0-devices-3d1f31c3b34819e8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/handle-fd0-devices-3d1f31c3b34819e8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/handle-partuuid-for-fstab-e0aadea20a056982.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/handle-partuuid-for-fstab-e0aadea20a056982.yaml -------------------------------------------------------------------------------- /releasenotes/notes/handle-ssl-063a91fb7bdcf9b9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/handle-ssl-063a91fb7bdcf9b9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/heartbeat-jitter-620bbcba591d2894.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/heartbeat-jitter-620bbcba591d2894.yaml -------------------------------------------------------------------------------- /releasenotes/notes/hwmgr-init-8f9c9b6205f64966.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/hwmgr-init-8f9c9b6205f64966.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ignore-grub-efi-fail-dcf7eb07f61f4388.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ignore-grub-efi-fail-dcf7eb07f61f4388.yaml -------------------------------------------------------------------------------- /releasenotes/notes/image-checksum-39b2ceef40933c28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/image-checksum-39b2ceef40933c28.yaml -------------------------------------------------------------------------------- /releasenotes/notes/image-download-max-duration-49eb5de0f1c23f52.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/image-download-max-duration-49eb5de0f1c23f52.yaml -------------------------------------------------------------------------------- /releasenotes/notes/image-download-retries-65ac31fe4328e438.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/image-download-retries-65ac31fe4328e438.yaml -------------------------------------------------------------------------------- /releasenotes/notes/image-security-5c23b890409101c9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/image-security-5c23b890409101c9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/improve-tgtd-status-d17173dc8f67959f.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | fixes: 3 | - Makes tgtd ready status detection more robust. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/inject-files-b411369ce6856dac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inject-files-b411369ce6856dac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspect-to-clean-b3616d843775c187.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspect-to-clean-b3616d843775c187.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspect-url-15547d48432cd2b5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspect-url-15547d48432cd2b5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspection-409-69d5bd6c2a49d2ec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspection-409-69d5bd6c2a49d2ec.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspection-to-report-disk-by-path-e3fd4c331d200903.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspection-to-report-disk-by-path-e3fd4c331d200903.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspection-wait-for-ips-223e39b65fef31bd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspection-wait-for-ips-223e39b65fef31bd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspection-wait-for-ips-v2-146016f758d7010c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspection-wait-for-ips-v2-146016f758d7010c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspector-logs-9b7c010c219691d2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspector-logs-9b7c010c219691d2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inspector-retry-502-2b286e2ccc64c195.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inspector-retry-502-2b286e2ccc64c195.yaml -------------------------------------------------------------------------------- /releasenotes/notes/instance-info-root-device-02fed0966bb00fb3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/instance-info-root-device-02fed0966bb00fb3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/inventory-conf-29b59ebe97aefbde.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/inventory-conf-29b59ebe97aefbde.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ip6-addresses-1c2b9bcd9a124de7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ip6-addresses-1c2b9bcd9a124de7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ipa-debug-68c86101b1fdc3d9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ipa-debug-68c86101b1fdc3d9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ipmi-address-channel-b6b8010c41d05c1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ipmi-address-channel-b6b8010c41d05c1b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ipmi-cleanup-a4454f6851d81c4d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ipmi-cleanup-a4454f6851d81c4d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ipv6-bmc-mac-6133fb30c0d4cc5e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ipv6-bmc-mac-6133fb30c0d4cc5e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ipv6-listen-85d40e58156e398f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ipv6-listen-85d40e58156e398f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ipv6-provision-42e9000f6f6a7a3a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ipv6-provision-42e9000f6f6a7a3a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/ironic-error-97e76d9ddacff039.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/ironic-error-97e76d9ddacff039.yaml -------------------------------------------------------------------------------- /releasenotes/notes/iscsi-detection-on-diskless-hw-f27dcce3aaa35ac2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/iscsi-detection-on-diskless-hw-f27dcce3aaa35ac2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/jitter-for-inspection-command-5a226927757a0308.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/jitter-for-inspection-command-5a226927757a0308.yaml -------------------------------------------------------------------------------- /releasenotes/notes/let_crypt_generate_the_salt-99876591325275a1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/let_crypt_generate_the_salt-99876591325275a1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lib-exc-41ee122eb4a04bc4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lib-exc-41ee122eb4a04bc4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/limit-qemu-img-malloc-arena-025ed84115481eae.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/limit-qemu-img-malloc-arena-025ed84115481eae.yaml -------------------------------------------------------------------------------- /releasenotes/notes/limit-qemu-img-ram-usage-d7b7a16ac5e9c917.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/limit-qemu-img-ram-usage-d7b7a16ac5e9c917.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lldp-error-handling-5b6576b378ef9c3a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lldp-error-handling-5b6576b378ef9c3a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lldp-loop-fdfa584caf33d847.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lldp-loop-fdfa584caf33d847.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lldp-raw-a09174cb930bca97.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lldp-raw-a09174cb930bca97.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lockdown-dc656fd26f13321f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lockdown-dc656fd26f13321f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lockout-command-result-a368187515385270.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lockout-command-result-a368187515385270.yaml -------------------------------------------------------------------------------- /releasenotes/notes/log-download-size-57982fa8df336520.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/log-download-size-57982fa8df336520.yaml -------------------------------------------------------------------------------- /releasenotes/notes/log-file-7aaaf31693ddc617.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/log-file-7aaaf31693ddc617.yaml -------------------------------------------------------------------------------- /releasenotes/notes/logs-collector-non-ascii-010339bf256443c8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/logs-collector-non-ascii-010339bf256443c8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lsblk-all-956c1df808a169bf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lsblk-all-956c1df808a169bf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lshw-cb89894be057bdc9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lshw-cb89894be057bdc9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lshw-for-memory-and-system-info-35c69da067c72b36.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lshw-for-memory-and-system-info-35c69da067c72b36.yaml -------------------------------------------------------------------------------- /releasenotes/notes/lshw-no-memory-bank-size-05ea71987362986e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/lshw-no-memory-bank-size-05ea71987362986e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/manual-introspection-b04b5c25f5e004ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/manual-introspection-b04b5c25f5e004ac.yaml -------------------------------------------------------------------------------- /releasenotes/notes/manually-configure-ironic-api-version-517afd0a423036ad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/manually-configure-ironic-api-version-517afd0a423036ad.yaml -------------------------------------------------------------------------------- /releasenotes/notes/md-restart-9e0d47863a086792.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/md-restart-9e0d47863a086792.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mdadm-d5b8c186182620b1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/mdadm-d5b8c186182620b1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mdns-e020484e64d76edb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/mdns-e020484e64d76edb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/min-ironic-ocata-dff80e567783e87c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/min-ironic-ocata-dff80e567783e87c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mix-and-match-disk-detection-58db04403ce220a0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/mix-and-match-disk-detection-58db04403ce220a0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mlnx-steps-now-available-for-deploy-4a4226ffaae888f3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/mlnx-steps-now-available-for-deploy-4a4226ffaae888f3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/move_swraid_to_efibootmgr-d87c1bfde1661fb5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/move_swraid_to_efibootmgr-d87c1bfde1661fb5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/multipath-handling-00a5b412d2cf2e4e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/multipath-handling-00a5b412d2cf2e4e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/multipath-serial-615fc925984abbf7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/multipath-serial-615fc925984abbf7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/multipath_error_handling_improvement-1669d0de4bfdbe95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/multipath_error_handling_improvement-1669d0de4bfdbe95.yaml -------------------------------------------------------------------------------- /releasenotes/notes/multiple-lan-channels-ee32d80150f990bf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/multiple-lan-channels-ee32d80150f990bf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/name-root-device-hints-0cfc8c90d03c8bf0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/name-root-device-hints-0cfc8c90d03c8bf0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/net-speed-8854901e2051bb79.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/net-speed-8854901e2051bb79.yaml -------------------------------------------------------------------------------- /releasenotes/notes/new-agent-api-afbe7391493749be.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/new-agent-api-afbe7391493749be.yaml -------------------------------------------------------------------------------- /releasenotes/notes/new-sync-command-6f5fa55df2fd5903.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/new-sync-command-6f5fa55df2fd5903.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-bash-for-grub-c38369af8cc7cf26.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-bash-for-grub-c38369af8cc7cf26.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-coreos-3345cc69009dead9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-coreos-3345cc69009dead9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-iscsi-fd21808edbea5ac2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-iscsi-fd21808edbea5ac2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-link-local-2e861978c5c7bf30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-link-local-2e861978c5c7bf30.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-mac-54616606ee6b844d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-mac-54616606ee6b844d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-netboot-d034bb1d1d9166c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-netboot-d034bb1d1d9166c5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-retry-disk-space-errors-a24c29b336fd11d9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-retry-disk-space-errors-a24c29b336fd11d9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-sample-ac11bd0fa27af62a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-sample-ac11bd0fa27af62a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-standalone-bb34eae2cc468837.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-standalone-bb34eae2cc468837.yaml -------------------------------------------------------------------------------- /releasenotes/notes/no-zram-78cc6583f4f90a9c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/no-zram-78cc6583f4f90a9c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/old-inspector-data-5e63c9bce72b4fb5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/old-inspector-data-5e63c9bce72b4fb5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/only-run-evaluate-hardware-support-once-9ec1ae327b4e03f2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/only-run-evaluate-hardware-support-once-9ec1ae327b4e03f2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslo-config-generator-b0f70b9fb7e23997.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/oslo-config-generator-b0f70b9fb7e23997.yaml -------------------------------------------------------------------------------- /releasenotes/notes/parallel-erase-disk-devices-09ea33d5443aead0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/parallel-erase-disk-devices-09ea33d5443aead0.yaml -------------------------------------------------------------------------------- /releasenotes/notes/partition_check_read_only_base_device-5bc15ac2f034aca9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/partition_check_read_only_base_device-5bc15ac2f034aca9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/permit-pre-hashed-rescue-passwords-4275f6e697533cec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/permit-pre-hashed-rescue-passwords-4275f6e697533cec.yaml -------------------------------------------------------------------------------- /releasenotes/notes/pint-0.5-816aaf3a4f6d4a6e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/pint-0.5-816aaf3a4f6d4a6e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/poll-mode-063bd36b2b18bffb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/poll-mode-063bd36b2b18bffb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prefix-lldp-timeout-50acc656313d8dd2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/prefix-lldp-timeout-50acc656313d8dd2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prepare-image-49744276cef719d5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/prepare-image-49744276cef719d5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/preserve-efi-folder-contents-ea1e278b3093ec55.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/preserve-efi-folder-contents-ea1e278b3093ec55.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prevent-deletion-of-shared-disk-filesystems-4c17c7666d2fe3bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/prevent-deletion-of-shared-disk-filesystems-4c17c7666d2fe3bc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prevent-needless-iscsi-cleanup-f8d602c0abc7e8ba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/prevent-needless-iscsi-cleanup-f8d602c0abc7e8ba.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prevent-restart-after-rescue-2cdd9cb03c0efb1b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/prevent-restart-after-rescue-2cdd9cb03c0efb1b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/prioritize-lsblk-device-serials-8cae406ca5164a01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/prioritize-lsblk-device-serials-8cae406ca5164a01.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu-img-ooo-write-721b8a0057ab7b8a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/qemu-img-ooo-write-721b8a0057ab7b8a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/qemu-write-zeros-2edbf3152c57e2b6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/qemu-write-zeros-2edbf3152c57e2b6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/raid-esp-size-2c322adb2d3b9ce7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/raid-esp-size-2c322adb2d3b9ce7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/raid-hints-604f9ffdd86432eb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/raid-hints-604f9ffdd86432eb.yaml -------------------------------------------------------------------------------- /releasenotes/notes/raid5-6-support-0807597c3633a26c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/raid5-6-support-0807597c3633a26c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/readd_missing_devs-2ed85805388b6e42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/readd_missing_devs-2ed85805388b6e42.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rebuild_on_esp_raid-33f359bdf5ccaa09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/rebuild_on_esp_raid-33f359bdf5ccaa09.yaml -------------------------------------------------------------------------------- /releasenotes/notes/relax-checksum-feeding-11044ae02b411a07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/relax-checksum-feeding-11044ae02b411a07.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-agent-token-required-808e99b83b4456a1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/remove-agent-token-required-808e99b83b4456a1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-lldp-timeout-ea481dbb01a39522.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/remove-lldp-timeout-ea481dbb01a39522.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-py38-15fc164a4a08b764.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/remove-py38-15fc164a4a08b764.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-py39-fca5d9e7d2e135cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/remove-py39-fca5d9e7d2e135cf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-switch_port_descr-switch_chassis_descr-40f2bb37b5f1fdd1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/remove-switch_port_descr-switch_chassis_descr-40f2bb37b5f1fdd1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-sysrq-2c2804930180f408.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/remove-sysrq-2c2804930180f408.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-vendor-passthru-eda3519c322eb4e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/remove-vendor-passthru-eda3519c322eb4e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/report-intf-bus-and-driver-63ed0277b372c1d1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/report-intf-bus-and-driver-63ed0277b372c1d1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rescan-before-checking-uefi-64597c937880134d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/rescan-before-checking-uefi-64597c937880134d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rescan-device-after-mkfs-3f9d52a2e3b6fff3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/rescan-device-after-mkfs-3f9d52a2e3b6fff3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rescue-dhcp_network-for-tinyipa-a14de5fae38a5dce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/rescue-dhcp_network-for-tinyipa-a14de5fae38a5dce.yaml -------------------------------------------------------------------------------- /releasenotes/notes/respect-listen-directives-94fb863c5b692c07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/respect-listen-directives-94fb863c5b692c07.yaml -------------------------------------------------------------------------------- /releasenotes/notes/rework-ata-secure-erase-c6684962ef078281.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/rework-ata-secure-erase-c6684962ef078281.yaml -------------------------------------------------------------------------------- /releasenotes/notes/root-device-hint-tran-48847d86d8cbcfbc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/root-device-hint-tran-48847d86d8cbcfbc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/root-device-hints-rotational-67e6e61074c26561.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/root-device-hints-rotational-67e6e61074c26561.yaml -------------------------------------------------------------------------------- /releasenotes/notes/safeguards_raid_fix-6521157d95aed18f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/safeguards_raid_fix-6521157d95aed18f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/sector_size-b2c0a07086012c17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/sector_size-b2c0a07086012c17.yaml -------------------------------------------------------------------------------- /releasenotes/notes/set-clock-prior-to-poweroff-af6ec210aad8b45a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/set-clock-prior-to-poweroff-af6ec210aad8b45a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/several-urls-9c3b8c14338b06ba.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/several-urls-9c3b8c14338b06ba.yaml -------------------------------------------------------------------------------- /releasenotes/notes/skip-bmc-detection-with-oob-management-7920f722d53974dc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/skip-bmc-detection-with-oob-management-7920f722d53974dc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/skip-lookup-and-heartbeat-if-apiurl-not-configured-5ae8b04ae1e74673.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/skip-lookup-and-heartbeat-if-apiurl-not-configured-5ae8b04ae1e74673.yaml -------------------------------------------------------------------------------- /releasenotes/notes/skips-bootloader-install-35c463195aa61800.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/skips-bootloader-install-35c463195aa61800.yaml -------------------------------------------------------------------------------- /releasenotes/notes/sleep-ebe58fbe07d30219.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/sleep-ebe58fbe07d30219.yaml -------------------------------------------------------------------------------- /releasenotes/notes/softraid-bootable-with-uefi-aa22e6cbaf1ea747.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/softraid-bootable-with-uefi-aa22e6cbaf1ea747.yaml -------------------------------------------------------------------------------- /releasenotes/notes/softraid-creation-on-nvme-a2fd4c531d200904.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | features: 3 | - Adds support for creating software RAID on NVMe drives. 4 | -------------------------------------------------------------------------------- /releasenotes/notes/softraid-partitioning-refactor-104b817c3bdc73e3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/softraid-partitioning-refactor-104b817c3bdc73e3.yaml -------------------------------------------------------------------------------- /releasenotes/notes/softraid-zap-superblocks-anywhere.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/softraid-zap-superblocks-anywhere.yaml -------------------------------------------------------------------------------- /releasenotes/notes/software-raid-4a88e6c5af9ea742.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/software-raid-4a88e6c5af9ea742.yaml -------------------------------------------------------------------------------- /releasenotes/notes/software-raid-raid-ESPs-25a2aa117b99620a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/software-raid-raid-ESPs-25a2aa117b99620a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/software-raid-use-label-as-rootfs-uuid-d9a3827180f1a238.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/software-raid-use-label-as-rootfs-uuid-d9a3827180f1a238.yaml -------------------------------------------------------------------------------- /releasenotes/notes/software_raid_use_rootfs_uuid-9149cc0c8638d5d5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/software_raid_use_rootfs_uuid-9149cc0c8638d5d5.yaml -------------------------------------------------------------------------------- /releasenotes/notes/start_passing_agent_version_to_ironic-6fa8670ae0e7eb38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/start_passing_agent_version_to_ironic-6fa8670ae0e7eb38.yaml -------------------------------------------------------------------------------- /releasenotes/notes/stream-raw-images-d2e245aaed991d86.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/stream-raw-images-d2e245aaed991d86.yaml -------------------------------------------------------------------------------- /releasenotes/notes/streaming-partition-images-cdeb260ef8f90012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/streaming-partition-images-cdeb260ef8f90012.yaml -------------------------------------------------------------------------------- /releasenotes/notes/streaming-uuid-fdf136a7745fbb3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/streaming-uuid-fdf136a7745fbb3d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-4096-sector-size-490adc8ed256092d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/support-4096-sector-size-490adc8ed256092d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-bootloader-csv-file-use-c815b520c600cd98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/support-bootloader-csv-file-use-c815b520c600cd98.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-collecting-ipv6-address-dd819d543f851a63.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/support-collecting-ipv6-address-dd819d543f851a63.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-image-proxy-e2987a6589375451.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/support-image-proxy-e2987a6589375451.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-linux-io-6bbd7ff1f0d70a0e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/support-linux-io-6bbd7ff1f0d70a0e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-lldp-in-inventory-4ab6e45ccd35dace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/support-lldp-in-inventory-4ab6e45ccd35dace.yaml -------------------------------------------------------------------------------- /releasenotes/notes/support-prep-partitions-5e273572ab7ce018.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/support-prep-partitions-5e273572ab7ce018.yaml -------------------------------------------------------------------------------- /releasenotes/notes/suse-tinyipa-support-20acecd6d7b20952.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/suse-tinyipa-support-20acecd6d7b20952.yaml -------------------------------------------------------------------------------- /releasenotes/notes/sw-raid-assemble-9c20fe967f73d1dd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/sw-raid-assemble-9c20fe967f73d1dd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/test-ip-reachability-before-advertise-689f2d3b9276d399.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/test-ip-reachability-before-advertise-689f2d3b9276d399.yaml -------------------------------------------------------------------------------- /releasenotes/notes/timeout_on_file_download-ed77918318316075.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/timeout_on_file_download-ed77918318316075.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tinycore-ipv6-1b620c61402b5720.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/tinycore-ipv6-1b620c61402b5720.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tinyipa-python3-default-b8434793e17465db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/tinyipa-python3-default-b8434793e17465db.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tinyipa-rescue-dhcp-multi-tenant-b32bda7bf2b12679.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/tinyipa-rescue-dhcp-multi-tenant-b32bda7bf2b12679.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tinyipa-ssh-e8a3a01a3f3ff5f4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/tinyipa-ssh-e8a3a01a3f3ff5f4.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tls-opts-50d09bddd5f70ef2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/tls-opts-50d09bddd5f70ef2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/udev-settle-f75db34db990ad68.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/udev-settle-f75db34db990ad68.yaml -------------------------------------------------------------------------------- /releasenotes/notes/udevadm-settle-9d3e5f1f20211857.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/udevadm-settle-9d3e5f1f20211857.yaml -------------------------------------------------------------------------------- /releasenotes/notes/uefi-esp-660fc2c650e6af92.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/uefi-esp-660fc2c650e6af92.yaml -------------------------------------------------------------------------------- /releasenotes/notes/uefi-fallback-266c647f6aff58fd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/uefi-fallback-266c647f6aff58fd.yaml -------------------------------------------------------------------------------- /releasenotes/notes/uefi-images-38c8536db189ffc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/uefi-images-38c8536db189ffc1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/understand-node-conflict-is-locked-2ea21dd45abfe4f7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/understand-node-conflict-is-locked-2ea21dd45abfe4f7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/up-qemuimg-mem-1536183a02b3a235.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/up-qemuimg-mem-1536183a02b3a235.yaml -------------------------------------------------------------------------------- /releasenotes/notes/usb-autodiscovery-ab5a4a40ba096bb8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/usb-autodiscovery-ab5a4a40ba096bb8.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use-latest-coreos-87f826d26b46548d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/use-latest-coreos-87f826d26b46548d.yaml -------------------------------------------------------------------------------- /releasenotes/notes/use-system-random-00b0721c8ebd0c5a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/use-system-random-00b0721c8ebd0c5a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/vmedia-copy-6a58f3183b166c42.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/vmedia-copy-6a58f3183b166c42.yaml -------------------------------------------------------------------------------- /releasenotes/notes/wait-for-interfaces-before-lookup-9bf38852b2f176a1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/wait-for-interfaces-before-lookup-9bf38852b2f176a1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/wait-root-device-504b517c3aec73e2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/wait-root-device-504b517c3aec73e2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/whole-disk-grub-0b1b8b9c44e31d28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/whole-disk-grub-0b1b8b9c44e31d28.yaml -------------------------------------------------------------------------------- /releasenotes/notes/zero-size-78d3be2ac8fd59c2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/notes/zero-size-78d3be2ac8fd59c2.yaml -------------------------------------------------------------------------------- /releasenotes/source/2023.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/2023.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2023.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/2023.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/2024.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2024.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/2024.2.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/2025.1.rst -------------------------------------------------------------------------------- /releasenotes/source/2025.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/2025.2.rst -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/_templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/liberty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/liberty.rst -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/victoria.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/victoria.rst -------------------------------------------------------------------------------- /releasenotes/source/wallaby.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/wallaby.rst -------------------------------------------------------------------------------- /releasenotes/source/xena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/xena.rst -------------------------------------------------------------------------------- /releasenotes/source/yoga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/yoga.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tools/bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/tools/bandit.yml -------------------------------------------------------------------------------- /tools/config/check_uptodate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/tools/config/check_uptodate.sh -------------------------------------------------------------------------------- /tools/config/ipa-config-generator.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/tools/config/ipa-config-generator.conf -------------------------------------------------------------------------------- /tools/run_bashate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/tools/run_bashate.sh -------------------------------------------------------------------------------- /tools/with_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/tools/with_venv.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/tox.ini -------------------------------------------------------------------------------- /zuul.d/ironic-python-agent-jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/zuul.d/ironic-python-agent-jobs.yaml -------------------------------------------------------------------------------- /zuul.d/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/ironic-python-agent/HEAD/zuul.d/project.yaml --------------------------------------------------------------------------------