From 15257705dd16b1f84fe7979dda45fe4bc75e7918 Mon Sep 17 00:00:00 2001 From: Tomas Hozza Date: Wed, 3 Mar 2021 17:55:24 +0100 Subject: [PATCH] Doc: add NEWS section for Cloud API UploadStatus enhancement Add NEWS section documenting changes done to Cloud API related to UploadStatus. Fix one typo in `rhel84-grub2-saved-entry.md`. Signed-off-by: Tomas Hozza --- docs/news/unreleased/cloudapi-upload-status.md | 16 ++++++++++++++++ docs/news/unreleased/rhel84-grub2-saved-entry.md | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 docs/news/unreleased/cloudapi-upload-status.md diff --git a/docs/news/unreleased/cloudapi-upload-status.md b/docs/news/unreleased/cloudapi-upload-status.md new file mode 100644 index 000000000..070ce6574 --- /dev/null +++ b/docs/news/unreleased/cloudapi-upload-status.md @@ -0,0 +1,16 @@ +# Cloud API: include upload target-specific options in `UploadStatus` + +The `UploadStatus` now includes additional information in its `options` property. +The information is specific to the chosen target Cloud provider and it is necessary +to successfully identify the built and shared OS image by the end user. Currently +this information is returned for both supported targets, **AWS** and **GCP**. + +Information included for **AWS** target: + +- AMI +- Region + +Information included for **GCP** target: + +- Image name +- Image's source Project ID diff --git a/docs/news/unreleased/rhel84-grub2-saved-entry.md b/docs/news/unreleased/rhel84-grub2-saved-entry.md index ed3f52b26..7788b0303 100644 --- a/docs/news/unreleased/rhel84-grub2-saved-entry.md +++ b/docs/news/unreleased/rhel84-grub2-saved-entry.md @@ -1,5 +1,5 @@ # RHEL8.4: Fix grub2 kernel selection -By marking the kernel we install as the `saved_entry`, we make sure that installing additional/subsequent kernels do not unintentienally change the default kernel to be booted into. +By marking the kernel we install as the `saved_entry`, we make sure that installing additional/subsequent kernels do not unintentionally change the default kernel to be booted into. Relevant PR: https://github.com/osbuild/osbuild-composer/pull/1241