diff --git a/pages/release-notes/v7-0/fuel_issues/non_dynamic_images_known.rst b/pages/release-notes/v7-0/fuel_issues/non_dynamic_images_known.rst new file mode 100644 index 000000000..efa8d2f1d --- /dev/null +++ b/pages/release-notes/v7-0/fuel_issues/non_dynamic_images_known.rst @@ -0,0 +1,15 @@ +* Currently, if you make changes in an already created environment that can + affect target images created by the image-based provisioning system + (for example, changes in repositories list) after your environment resets, + these changes may not be applied during a new deployment. + + To solve the problem, manually remove a target image on Fuel Master node + after an environment resets and before you redeploy it: + + .. code-block:: bash + + ENV_ID=1 find /var/www/nailgun/targetimages/ -name "env_${ENV_ID}_*" -delete + + where ``ENV_ID`` is the ID of an OpenStack environment. + + See `1485997 `_.