From 196c75affdd54b5f2695d280ab40fdd8b12c56ff Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 11 Mar 2019 18:22:24 -0700 Subject: [PATCH] Add a comment explaining the 'tar-gz' type ...as it's not really at all obvious what it actually is just from the name. Signed-off-by: Adam Williamson --- productmd/images.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/productmd/images.py b/productmd/images.py index 7b7be3e..95ac467 100644 --- a/productmd/images.py +++ b/productmd/images.py @@ -90,6 +90,9 @@ 'raw-xz': ['raw.xz'], 'rescue': [], 'rhevm-ova': ['rhevm.ova'], + # raw disk image named `disk.raw` stuffed into a gzipped tarball + # format required for import by Google Compute Engine: + # https://cloud.google.com/compute/docs/images/import-existing-image 'tar-gz': ['tar.gz'], 'vagrant-hyperv': ['vagrant-hyperv.box'], 'vagrant-libvirt': ['vagrant-libvirt.box'],