Skip to content
Snippets Groups Projects
  1. Aug 12, 2024
  2. Aug 09, 2024
  3. Aug 08, 2024
    • Franciszek Przewozny's avatar
      Add /v3 suffix to OPENSTACK_KEYSTONE_URL · c0db4ac4
      Franciszek Przewozny authored
      Change I60162b54bc06e158534d29311d4474b34750c64d
      removed the '/v3' suffix from horizon_keystone_url variable,
      but the version is needed for some operations.
      This patch fixes the "Change password" Horizon function
      until Horizon bug #2073639 is resolved.
      
      Closes-Bug: #2073159
      Change-Id: I6ff46b47e9109d0757f2e5ce8019ba591b9892e1
      c0db4ac4
    • Stig Telfer's avatar
      Fix post-config of OVS for manila-share servers · 10b72b98
      Stig Telfer authored
      A host that is in the manila-share group, but not in controllers
      network, etc., will fail service deployment if it is not using the
      generic manila driver (eg, if it is using the CephFS native driver).
      This is because deployment of openvswitch-vswitchd is predicated on
      the drivers enabled for manila-share.  However, this predicate is not
      universally applied.  Where inventory group membership is used the
      dependency on openvswitch-vswitchd presence will fail.
      
      Closes-Bug: #1993285
      
      Change-Id: I821e513d24f2a1c59240d65ad68c3b5f2080e439
      10b72b98
  4. Jul 25, 2024
  5. Jul 22, 2024
  6. Jul 17, 2024
    • Michal Arbet's avatar
      Fix mariadb recovery · 84e95d25
      Michal Arbet authored
      This patch modifies tasks that are delegated to
      localhost to use local connection.
      Firstly, this is correct since SSH connection is not used,
      and secondly, it fixes the issue when kolla-ansible is
      packaged in a docker container. If the local connection
      is not used, the tasks will fail because temporary data are
      stored outside the container, whereas we need it to be
      stored inside the container so we can read them and set_facts.
      
      Closes-Bug: #2073370
      Change-Id: I9547d5da78da30bfeea8e97056cfa9308c977098
      84e95d25
  7. Jul 16, 2024
  8. Jul 09, 2024
  9. Jul 08, 2024
    • Ivan Halomi's avatar
      Fix podman healtcheck when not enabled · 59bebd41
      Ivan Halomi authored
      
      There was a bug where setting the test command
      for the health check to 'NONE' would throw an error
      in podman_worker. This was problematic since K-A
      uses 'NONE' as an indicator that the health check is not enabled.
      
      Closes-Bug: #2071912
      Change-Id: I3140bb79eace58b23f579be3da569c502c52c38c
      Signed-off-by: default avatarIvan Halomi <ivan.halomi@tietoevry.com>
      59bebd41
  10. Jul 03, 2024
  11. Jul 02, 2024
  12. Jun 28, 2024
    • Matus Jenca's avatar
      Patch service-cert-copy role to be used w/o HAProxy · cf903b9a
      Matus Jenca authored
      Currently, service-cert-copy role used to copy certs and CA
      into containers has 'when' statements  that check if HAProxy is
      defined and enabled for the service. However, some services like
      RabbitMQ, ProxySQL or Redis don't use HAProxy
      
      This patch removes the when condition, as it is not necessary.
      
      PartiallyImplements: mariadb-ssl
      Change-Id: I8864e05212e0ed76ea3a0108b00ed9dd04b1a697
      cf903b9a
    • Roman Krček's avatar
      Performance: use filters for service dicts · fb3a8f5f
      Roman Krček authored
      Most roles are not leveraging the jinja filters available.
      According to [1] filtering the list of services makes the execution
      faster than skipping the tasks.
      
      This patchset also includes some cosmetic changes to genconfig.
      Individual services are now also using a jinja filter. This has
      no impact on performance, just makes the tasks look cleaner.
      
      Naming of some vars in genconfig was changed to "service" to make
      the tasks more uniform as some were previously using
      the service name and some were using "service".
      
      Three metrics from the deployment were taken and those were
      - overall deployment time [s]
      - time spent on the specific role [s]
      - CPU usage (measured with perf) [-]
      Overall genconfig time went down on avg. from 209s to 195s
      Time spent on the loadbalancer role went down on avg. from 27s to 23s
      Time spent on the neutron role went down on avg from 102s to 95s
      Time spent on the nova-cell role went down on avg. from 54s to 52s
      Also the average CPUs utilized reported by perf went down
      from 3.31 to 3.15.
      For details of how this was measured see the comments in gerrit.
      
      [1] - https://github.com/stackhpc/ansible-scaling/blob/master/doc/skip.md
      
      
      
      Change-Id: Ib0f00aadb6c7022de6e8b455ac4b9b8cd6be5b1b
      Signed-off-by: default avatarRoman Krček <roman.krcek@tietoevry.com>
      fb3a8f5f
  13. Jun 26, 2024
  14. Jun 24, 2024
  15. Jun 19, 2024
  16. Jun 13, 2024
    • Martin Hiner's avatar
      Move Nova roles after OVS · 30f1ffc3
      Martin Hiner authored
      
      Moves the execution of Nova roles after Open vSwitch roles.
      Current order of execution causes VMs to not be able to start after the redeployment of Openstack during container engine migration.
      
      Change-Id: I8ad0dcdfaf419dfbc04d19203424adecd400db05
      Signed-off-by: default avatarMartin Hiner <martin.hiner@tietoevry.com>
      30f1ffc3
  17. Jun 10, 2024
    • jayjahns's avatar
      Set node to a valid rabbitmq host · 52729e68
      jayjahns authored
      If rabbitmq is not on the same host as the nova-controller,
      then this task will fail. This change ensures that the
      task references an actual rabbitmq host vs the host the
      task runs on.
      
      Closes-Bug: 2020805
      Change-Id: I1b58f4aeda8c9fe8db1770c63c17bf1c465f3d2a
      52729e68
  18. May 27, 2024
  19. May 16, 2024
  20. May 15, 2024
  21. May 14, 2024
  22. May 13, 2024
  23. May 09, 2024
    • Michal Nasiadka's avatar
      neutron: add service role · 03185976
      Michal Nasiadka authored
      After Neutron policy changes - Octavia jobs started
      to fail on cascade LB deletion due to Neutron user
      not having service role.
      
      Closes-Bug: #2065337
      
      Change-Id: I616bf3a3dbb4d963665b1621a9e5e9d417b13942
      03185976
  24. Apr 29, 2024
  25. Apr 27, 2024
  26. Apr 25, 2024
  27. Apr 24, 2024
Loading