Skip to content

Commit

Permalink
Merge pull request #338 from stackhpc/upstream/2024.1-2024-11-04
Browse files Browse the repository at this point in the history
Synchronise 2024.1 with upstream
  • Loading branch information
priteau authored Nov 4, 2024
2 parents f46391f + 77c1ad1 commit ac988cb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ansible/inventory/group_vars/all/kolla
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ overcloud_container_image_regex_map:
enabled: "{{ kolla_enable_placement | bool }}"
- regex: ^prometheus
enabled: "{{ kolla_enable_prometheus | bool }}"
- regex: ^proxysql
enabled: "{{ kolla_enable_proxysql | bool }}"
- regex: ^qdrouterd
enabled: "{{ kolla_enable_qdrouterd | bool }}"
- regex: ^rabbitmq
Expand Down Expand Up @@ -508,6 +510,7 @@ kolla_enable_mariadb: "yes"
kolla_enable_memcached: "yes"
kolla_enable_neutron: "{{ kolla_enable_openstack_core | bool }}"
kolla_enable_nova: "{{ kolla_enable_openstack_core | bool }}"
kolla_enable_proxysql: "no"
kolla_enable_rabbitmq: "yes"

# OpenStack services can be enabled or disabled with these options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ def _is_dnf_mirror():
return info == 'centos'


def _is_ubuntu_noble():
name = distro.name()
version = distro.version()
return name == 'Ubuntu' and version == 24.04


def test_network_ethernet(host):
interface = host.interface('dummy2')
assert interface.exists
Expand Down Expand Up @@ -197,6 +203,9 @@ def test_ntp_non_default_time_server(host):
assert "time.cloudflare.com" in chrony_config.content_string


# TODO(priteau): Remove once we force time sync
@pytest.mark.skipif(_is_ubuntu_noble(),
reason="Clock often fails to synchronize on Ubuntu Noble")
def test_ntp_clock_synchronized(host):
# Tests that the clock is synchronized
status_output = host.check_output("timedatectl status")
Expand Down
5 changes: 5 additions & 0 deletions releasenotes/notes/build-proxysql-image-ec09332ef0b7dae0.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
fixes:
- |
The ``proxysql`` image is now built when ``kolla_enable_proxysql`` is set
to ``true``.

0 comments on commit ac988cb

Please sign in to comment.