Skip to content
Snippets Groups Projects
  1. Jul 03, 2022
  2. Jun 30, 2022
  3. Jun 27, 2022
  4. Jun 23, 2022
  5. Jun 22, 2022
  6. Jun 21, 2022
    • Michal Arbet's avatar
      Fix nested mounts of /run/openvswitch · 889c0d16
      Michal Arbet authored
      As kolla-toolbox is mounting /run:/run
      there is no need to mount also /run/openvswitch.
      This is causing /run/openvswitch is mounted
      again and again up to 32767 times after kolla-toolbox
      restart.
      
      Closes-Bug: #1979295
      Change-Id: I49b3bde8b2bd61b6c931a81542a0d89f8a303ffc
      889c0d16
  7. Jun 20, 2022
  8. Jun 13, 2022
  9. Jun 09, 2022
    • Will Szumski's avatar
      Add keystone_authtoken.service_type · 49006e56
      Will Szumski authored
      Fixes an issue where access rules failed to validate:
      
          Cannot validate request with restricted access rules. Set
          service_type in [keystone_authtoken] to allow access rule validation
      
      I've used the values from the endpoint. This was mostly a straight
      forward copy and paste, except:
      
      - versioned endpoints e.g cinderv3 where I stripped the version
      - monasca has multiple endpoints associated with a single service. For
        this, I concatenated logging and monitoring to be logging-monitoring.
      
      Closes-Bug: #1965111
      Change-Id: Ic4b3ab60abad8c3dd96cd4923a67f2a8f9d195d7
      49006e56
  10. Jun 08, 2022
  11. Jun 07, 2022
    • Michal Arbet's avatar
      Enable hacluster role when it is needed · e2f5c0db
      Michal Arbet authored
      Masakari-hostmonitor needs to have
      corosync/pacemaker deployed.
      
      This patch is just changing default enable_hacluter: "no"
      to "yes" if masakari-hostmonitor is enabled.
      
      Closes-Bug: #1934149
      Change-Id: I979d1d6d08ca0cc0a748f175da77f68bcecc2d1a
      e2f5c0db
  12. Jun 02, 2022
    • Michal Arbet's avatar
      Remove nova related config from placement · fe1a8a34
      Michal Arbet authored
      This patch is removing nova configuration
      options, this was probably caused by migration
      from nova-placement to placement.
      
      Change-Id: Ib54b26428b79d5c4f554928b8634a0bb4e884a90
      fe1a8a34
    • Pierre Riteau's avatar
      Increase openstack-exporter timeout to 45 seconds · 9653ebe1
      Pierre Riteau authored
      Even on moderately sized clouds, openstack-exporter can easily take more
      than 10 seconds to return, causing Prometheus to fail to scrape data.
      
      Since the default scrape internal is 60 seconds, we can increase the
      default timeout to 45 seconds.
      
      Change-Id: Id8dffc425ff057b1e45103eb53734543bca8be80
      Closes-Bug: #1976629
      9653ebe1
    • Michal Arbet's avatar
      Remove configuration related to api_workers · eafd3a59
      Michal Arbet authored
      This patch is removing api related configuration
      from service's config files as we are using
      apache mod_wsgi and this configuration is not
      used.
      
      Change-Id: I69a1542a6f24214fbf6e703782aefb566de4fb26
      eafd3a59
  13. May 31, 2022
  14. May 28, 2022
  15. May 26, 2022
  16. May 25, 2022
  17. May 24, 2022
  18. May 23, 2022
  19. May 21, 2022
    • Mark Goddard's avatar
      masakari: support libvirt SASL in instance monitor · 5d28a7c8
      Mark Goddard authored
      Since enabling libvirt SASL authentication, the masakari instance
      monitor fails to connect to libvirt. We see the following error in logs:
      
          libvirt.libvirtError: authentication failed: Failed to start SASL
          negotiation: -4 (SASL(-4): no mechanism available: No worthy mechs
          found)
      
      This change adds support for SASL authentication in Masakari instance
      monitor.
      
      Depends-On: https://review.opendev.org/c/openstack/kolla/+/834456
      Closes-Bug: #1965754
      Change-Id: I974046662b383a12ac6281b725523760a96657bd
      5d28a7c8
  20. May 18, 2022
  21. May 17, 2022
  22. May 13, 2022
  23. May 12, 2022
  24. May 06, 2022
  25. May 02, 2022
    • Pierre Riteau's avatar
      Fix typos in docs · 555cd39f
      Pierre Riteau authored
      This is a follow up to I7e5c1e20c7b66b64cbd333f669ef8d8da60daaa8.
      
      Change-Id: I11a86f59c1fb9cddde3370b544ee7bf4e8ae4fb4
      555cd39f
  26. Apr 27, 2022
  27. Apr 25, 2022
    • LinPeiWen's avatar
      Performance: site.yml remove redundant 'when' · 322e2883
      LinPeiWen authored
      Facts define the group key to judge in incloud roles,
      remove when statement does not execute to speed up execution
      
      Partially-Implements: blueprint performance-improvements
      Change-Id: If22255f1adc07ab16b46f8ad1280efdf7d713d28
      322e2883
  28. Apr 24, 2022
    • Christian Berendt's avatar
      [bifrost] add bifrost_deploy_verbosity parameter · ea5b4d7e
      Christian Berendt authored
      With the parameter bifrost_deploy_verbosity it is possible
      to set the verbosity of the bootstrap of Bifrost.
      
      This makes it possible to reduce verbosity when running
      /bifrost/playbooks/install.yaml if needed.
      
      Change-Id: I5815220f2193a492ae7e1f63443075790ae7aaef
      ea5b4d7e
  29. Apr 22, 2022
    • Mark Goddard's avatar
      nova: use any_errors_fatal for once-per-cell tasks · 832989d0
      Mark Goddard authored
      We run some nova tasks once per cell, using a condition to match a
      single host in the cell. In other similar tasks, we use run_once, which
      will fail all hosts if the task fails. Typically these tasks are
      critical, and that is desirable. However, with the approach used in
      nova-cell to support multiple cells, if a once-per-cell task fails, then
      other hosts will continue to execute, which could lead to unexpected
      results.
      
      This change adds any_errors_fatal to the plays or blocks that run these
      tasks.
      
      Closes-Bug: #1948694
      
      Change-Id: I2a5871ccd4e8198171ef3239ce95f475f3e4b051
      832989d0
  30. Apr 21, 2022
  31. Apr 20, 2022
Loading