Catch up release notes for Mitaka

Change-Id: I0d42dd30053c0d54d566c58cbadb4e7b32b8f832
This commit is contained in:
Jim Rollenhagen 2015-12-16 16:34:21 -08:00
parent e8488c2534
commit b9df861eb7
10 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,4 @@
---
features:
- Root device hints now also inspect ID_WWN_WITH_EXTENSION
and ID_WWN_VENDOR_EXTENSION from udev.

View File

@ -0,0 +1,11 @@
---
features:
- CoreOS image builder now runs IPA in a chroot, instead
of a container. systemd-nspawn has been adding more
security features that break several things IPA needs
to do (after all, IPA manipulates hardware), such as
using sysrq triggers or writing to /sys.
upgrade:
- Now that IPA runs in a chroot, any operator tooling
built around the container may need to change (for
example, methods of getting a shell inside the container).

View File

@ -0,0 +1,4 @@
---
fixes:
- Fixes configdrive creation for MBR disks greater than
2TB.

View File

@ -0,0 +1,3 @@
---
fixes:
- Makes tgtd ready status detection more robust.

View File

@ -0,0 +1,4 @@
---
fixes:
- Fixes an issue using the "logs" inspection collector
when logs contain non-ascii characters.

View File

@ -0,0 +1,13 @@
---
features:
- Adds support for streaming raw images directly onto
the disk. This avoids writing the image to a tmpfs
partition before writing it to disk, which also enables
using images larger than the usable amount of RAM on
the machine IPA runs on. Pass `stream_raw_images=True`
to the `prepare_image` command to enable this; it is
disabled by default.
fixes:
- Raw images larger than available of RAM may now be used
by passing `stream_raw_images=True` to the `prepare_image`
command; these will be streamed directly to disk.

View File

@ -0,0 +1,6 @@
---
features:
- Adds support for setting proxy info for downloading
images. This is controlled by the `proxies` and `no_proxy`
keys in the `image_info` dict of the `prepare_image`
command.

View File

@ -0,0 +1,6 @@
---
features:
- IPA now supports Linux-IO as an alternative to tgtd.
The iSCSI extension will try to use Linux-IO first,
and fall back to tgtd if Linux-IO is not found or
cannot be used.

View File

@ -0,0 +1,4 @@
---
features:
- The CoreOS image builder now uses the latest CoreOS
stable version when building images.

View File

@ -0,0 +1,4 @@
---
other:
- System random is now used where applicable, rather
than the default python random library.