1. 25 Mar, 2022 1 commit
  2. 02 Mar, 2022 3 commits
    • Thomas Goirand's avatar
      Add autopkgtest. · 54fe41ff
      Thomas Goirand authored
      54fe41ff
    • Thomas Goirand's avatar
      Now packaging 10.10.0 · 09ffa58f
      Thomas Goirand authored
      09ffa58f
    • Thomas Goirand's avatar
      Merge tag '10.10.0' into debian/yoga · 6670d6b6
      Thomas Goirand authored
      ironic-inspector 10.10.0 release
      
      meta:version: 10.10.0
      meta:diff-start: -
      meta:series: yoga
      meta:release-type: release
      meta:pypi: no
      meta:first: no
      meta:release:Author: Iury Gregory Melo Ferreira <iurygregory@gmail.com>
      meta:release:Commit: Iury Gregory Melo Ferreira <iurygregory@gmail.com>
      meta:release:Change-Id: Ia2329fdf6142ca6b4a2c91acec7675b0fbba4dc2
      meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org>
      meta:release:Code-Review+1: Riccardo Pittau <elfosardo@gmail.com>
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
      6670d6b6
  3. 14 Jan, 2022 2 commits
    • Zuul's avatar
      Merge "Remove rootwrap rule for dnsmasq systemctl" · 567b7313
      Zuul authored
      567b7313
    • Steve Baker's avatar
      Remove rootwrap rule for dnsmasq systemctl · a72289fb
      Steve Baker authored
      The systemd service named openstack-ironic-inspector-dnsmasq is a name
      which was only ever used by TripleO and hasn't been used since before
      Train when the services were containerized and the dnsmasq process
      management was no longer handled by inspector at all.
      
      This change removes this rootwrap rule as unused for some years. Any
      configuration tool which is setting
      [dnsmasq_pxe_filter]dnsmasq_start_command also needs to be writing an
      appropriate rootwrap.d file, as the inspector devstack plugin does.
      
      Change-Id: I38974faa8897daabf88ff63402d42a3ef93e675c
      a72289fb
  4. 13 Jan, 2022 1 commit
    • Julia Kreger's avatar
      Return a content-length on HTTP204 to prevent client failures · 55e47c63
      Julia Kreger authored
      It turns out that eventlet has been injecting a
      ``Transfer-Encoding`` header as of recent into WSGI application
      response headers. The result of this ultimately depends on how
      the HTTP client which is passing the request to the server is
      written to handle data.
      
      Apache, for example, will return that an invalid response was
      received. In part because it sees the request end, with an HTTP
      204 response code, but also an encoding indicating there is
      a multipart body encoding inbound. Which is confusing.
      
      Other C based HTTP clients can have any number of reactions up to
      and including disconnecting sessions. Curl, depending on the
      headers present either returns success but notes body weirdness
      or actually returns return code 18.
      
      Python-Requests kind of has it a little worse, and we see this
      with clients. With it, it tries to prepare a respones content
      body based upon the presence of the header indicating there is
      a body. But it blows up thinking there is more data to read on
      the socket when there is not more data to read.
      
      Regardless, all of this is an RFC7230 violation.
      
      Neither Content-Length nor Transfer-Encoding should be on an HTTP
      204 response. However, Content-Length is the lesser evil, and we
      have a similar endpoing in Ironic which *does* explicitly get
      returned with a zero length content-length, and does not
      demonstrate such issues.
      
      As such, in the interest of the lesser evils until Eventlet's evil
      ways of header injection are remedied, we're explicitly going to
      force a Content-Length header to be sent indicating a zero length
      response.
      
      For more information, please see: https://github.com/eventlet/eventlet/issues/746
      
      Change-Id: I014cc65c79222f4d4d7c2b6ff11a76e56659340c
      55e47c63
  5. 14 Dec, 2021 1 commit
  6. 08 Dec, 2021 1 commit
  7. 06 Dec, 2021 1 commit
  8. 25 Nov, 2021 1 commit
  9. 12 Oct, 2021 1 commit
  10. 01 Oct, 2021 1 commit
  11. 30 Sep, 2021 3 commits
  12. 27 Sep, 2021 3 commits
    • Tadeas Kot's avatar
      Add support for state selector in the list introspection · ff93c779
      Tadeas Kot authored
      This commit add support for state selector to the list introspection.
      
      * ``GET /v1/introspection?state=[starting, waiting, processing,
                                       finished, error, reapplying,
      				 enrolling]``
      
      Story: 1625183
      Task: 11350
      Change-Id: I2c5222110487a08a4e7b1efbcbc5dc3d552fae3e
      ff93c779
    • Thomas Goirand's avatar
      Now packaging 10.8.0 · 3b42a03b
      Thomas Goirand authored
      3b42a03b
    • Thomas Goirand's avatar
      Merge tag '10.8.0' into debian/xena · 362b3d16
      Thomas Goirand authored
      ironic-inspector 10.8.0 release
      
      meta:version: 10.8.0
      meta:diff-start: -
      meta:series: xena
      meta:release-type: release
      meta:pypi: no
      meta:first: no
      meta:release:Author: Hervé Beraud <hberaud@redhat.com>
      meta:release:Commit: Iury Gregory Melo Ferreira <iurygregory@gmail.com>
      meta:release:Change-Id: Ic1ba6b8a0db76946cd84bb9d001020ddc74ad227
      meta:release:Code-Review+2: Hervé Beraud <herveberaud.pro@gmail.com>
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
      362b3d16
  13. 22 Sep, 2021 2 commits
  14. 15 Sep, 2021 1 commit
  15. 14 Sep, 2021 2 commits
  16. 12 Sep, 2021 1 commit
    • Takashi Kajinami's avatar
      Add optional healthcheck middleware · d7400b5d
      Takashi Kajinami authored
      This change allows uses to enable the healthcheck middleware from
      oslo.middleware in API pipeline, by setting the [healthcheck]/enabled
      option. This middleware provides an API endpoint at /healthcheck path
      which allows load balancers or monitoring applications to determine
      a service is up using HTTP requests.
      
      This change basically follows the same change merged in ironic[1] repo.
      
      [1] 6f439414bdcef9fc02f844f475ec798d48d42558
      
      Change-Id: Ic2ee2bca74ea2a5a0723ef54b10c531f77ea7b8d
      d7400b5d
  17. 03 Sep, 2021 1 commit
    • Iury Gregory Melo Ferreira's avatar
      Include ironic/tests in irrelevant-files · 62f79a11
      Iury Gregory Melo Ferreira authored
      Since we run inspector jobs in ironic gate, we need to
      include `ironic/tests` in the irrelevant-files so
      we don't run the jobs when there is only changes in unit tests.
      
      Change-Id: I98757ab78716689355f70c7735480d4dc8e04320
      62f79a11
  18. 30 Aug, 2021 3 commits
    • Thomas Goirand's avatar
      Fixed (build-)depends for this release. · b7426265
      Thomas Goirand authored
      b7426265
    • Thomas Goirand's avatar
      Now packaging 10.7.0 (xena) · bb2ff52c
      Thomas Goirand authored
      bb2ff52c
    • Thomas Goirand's avatar
      Merge tag '10.7.0' into debian/xena · 9816652d
      Thomas Goirand authored
      ironic-inspector 10.7.0 release
      
      meta:version: 10.7.0
      meta:diff-start: -
      meta:series: xena
      meta:release-type: release
      meta:pypi: no
      meta:first: yes
      meta:release:Author: Riccardo Pittau <elfosardo@gmail.com>
      meta:release:Commit: Riccardo Pittau <elfosardo@gmail.com>
      meta:release:Change-Id: Ib6733f0b1aa2e8cfb6f6e162591b5ba1fe56487b
      meta:release:Code-Review+1: Dmitry Tantsur <dtantsur@protonmail.com>
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org>
      meta:release:Workflow+1: Thierry Carrez <thierry@openstack.org>
      9816652d
  19. 20 Aug, 2021 1 commit
    • Takashi Kajinami's avatar
      Update parameters for authtoken middleware · 6e72471a
      Takashi Kajinami authored
      ... to avoid warnings from the middleware about deprecated parameters.
      Currently parameters of each auth plugin are not loaded in unit tests
      so user credentials are not updated but just removed.
      
      Change-Id: I6e420dac51ac8cf92eadb1c3a3d4716a96c22001
      6e72471a
  20. 16 Aug, 2021 1 commit
  21. 11 Aug, 2021 1 commit
  22. 10 Aug, 2021 1 commit
    • Julia Kreger's avatar
      Handle NodeLocked failures · 7f6c4c43
      Julia Kreger authored
      Some actions can fail due to the node being locked as part of
      normal operations. This was previously handled silently by
      python-ironicclient, but when inspector was changed to use
      openstacksdk, this was no longer handled.
      
      Adds the retry wrapper around critical path methods involving
      power/reboot ops and node updates which require locks.
      
      Change-Id: I3d26cf46da02b3e8f3f773c0aeaed6843e0f26e5
      Story: 2009107
      Task: 42966
      7f6c4c43
  23. 05 Aug, 2021 1 commit
    • Riccardo Pittau's avatar
      Add lower-constraints job to current development branch · 424b53e5
      Riccardo Pittau authored
      The lower-constraints test was removed because of an issue where pip
      could not correctly determine the required packages versions to install,
      ending in an almost infinite loop that would end up in timeout, failure,
      and general mayhem.
      Recently the issue has been fixed and, if properly configured, the
      lower-constraints test can provide good indication of which minimum
      versions are required to support the current code.
      This patch adds the test back to the current development branch, and it
      runs only on master.
      The lower-constraints file will stay in the future stable branches.
      
      Change-Id: I2e247ff2d68705d04d40c7ea653a8d3e0daf17d8
      424b53e5
  24. 30 Jul, 2021 1 commit
  25. 29 Jul, 2021 1 commit
  26. 13 Jul, 2021 1 commit
    • Riccardo Pittau's avatar
      Update requirements · 611a543e
      Riccardo Pittau authored
      Update minimum required versions of python packages.
      The updates is based on crosscheck requirements from required
      packages:
      
      oslo-policy 3.7.0 depends on oslo.context>=2.22.0
      
      increase oslo-service version to be able to use eventlet 0.26.0
      oslo-service 1.24.0 depends on eventlet!=0.18.3, !=0.20.1, <0.21.0 and >=0.18.2
      
      increase oslo-log version to fix error:
      AttributeError: type object 'deprecated' has no attribute 'WALLABY'
      
      oslo-log 4.3.0 depends on oslo.serialization>=2.25.0
      oslo-log 4.3.0 depends on pbr>=3.1.1
      oslo-log 4.3.0 depends on oslo.i18n>=3.20.0
      
      Change-Id: I20a5a20b94ffd27ea34f23ac89ca2826eb548b1a
      611a543e
  27. 06 Jul, 2021 2 commits
  28. 05 Jul, 2021 1 commit