From 28c8fab601d454052420d01da12165013ddf7ebd Mon Sep 17 00:00:00 2001 From: Maksim Malchuk Date: Fri, 1 Sep 2023 12:03:10 +0300 Subject: [PATCH] Add forgotten release note for 886747 Followup on I0401bfc03cd31d72c5a2ae0a111889d5c29a8aa2 Related-Bug: #2024664 Change-Id: I97914485f4392a4f303f32056d0b471948dbc84c Signed-off-by: Maksim Malchuk --- ...default-tftp-bind-address-602acf76136d1732.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 releasenotes/notes/default-tftp-bind-address-602acf76136d1732.yaml diff --git a/releasenotes/notes/default-tftp-bind-address-602acf76136d1732.yaml b/releasenotes/notes/default-tftp-bind-address-602acf76136d1732.yaml new file mode 100644 index 0000000000..4d0ad17d3e --- /dev/null +++ b/releasenotes/notes/default-tftp-bind-address-602acf76136d1732.yaml @@ -0,0 +1,14 @@ +--- +upgrade: + - | + Now ``ironic_tftp`` service does not bind on 0.0.0.0, by default it uses ip + address of the ``api_interface``. To revert to the old behaviour, please + set ``ironic_tftp_interface_address: 0.0.0.0`` in ``globals.yml``. + +fixes: + - | + Fixes ``ironic_tftp`` which binds to all ip addresses on the system. + Added ``ironic_tftp_interface``, ``ironic_tftp_address_family`` and + ``ironic_tftp_interface_address`` parameters to set the address for the + ``ironic_tftp`` service. + `LP#2024664 `__