tobiko/releasenotes/notes/image-file-deprecated-c9394ca421f7bbaf.yaml
Eduardo Olivares 22503c28a2 image_file parameter not supported anymore
Despite the image_file parameter not being configurable anymore,
image_file is still an internal attribute from the UrlGlanceImageFixture
class, which depends on the configurable image_url parameter,
whose value could be either an http(s):// URL or a file:// URL.

Hence, local stored images can still be used by setting image_url to
something like this: file:///tmp/images/myimage.qcow2

Change-Id: Iee77359037ecab4536ea3e904a7d659fbf2aa7b0
2025-01-08 11:16:42 +01:00

16 lines
557 B
YAML

---
deprecations:
- |
The config parameter `image_file` is not available anymore.
With this parameter, it was possible to configure the local path to the
images that could be used to create either Cirros or Ubuntu VM instances.
It is still possible to do this, using the existing parameter `image_url`:
.. code-block:: text
[cirros]
image_url=file:///tmp/cirros.img
Internally, the `image_file` attribute is still part of the `UrlGlanceImageFixture` class
and it indicates where the image file is saved locally.