Skip to content

Commit 04a71db

Browse files
authored
Merge pull request #1692 from stackhpc/proxysql-fix
Bump proxysql to be compatible with K-A bug #2112339 fix
2 parents 094c2e0 + 25ddeb5 commit 04a71db

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

etc/kayobe/kolla-image-tags.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ kolla_image_tags:
1515
rocky-9: master-rocky-9-20250305T111730
1616
prometheus:
1717
rocky-9: master-rocky-9-20250430T112026
18+
proxysql:
19+
rocky-9: master-rocky-9-20250609T102146
20+
ubuntu-noble: master-ubuntu-noble-20250609T102146
1821
rabbitmq:
1922
rocky-9: master-rocky-9-20250502T080944
2023
skyline:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
fixes:
3+
- |
4+
Bumped ProxySQL Kolla image to be compatible with Kolla-Ansible bug
5+
fix: `Missing default hostgroup for user in proxysql Edit
6+
<https://bugs.launchpad.net/kolla-ansible/+bug/2112339>`__

tools/kolla-images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def check_image_map(kolla_ansible_path: str):
311311
image_map = yaml.safe_load(image_map_str)
312312
image_var_re = re.compile(r"^([a-z0-9_]+)_image$")
313313
image_map = {
314-
image_var_re.match(image_var).group(1): image.split("/")[-1].replace('{{ docker_image_name_prefix }}', '')
314+
image_var_re.match(image_var).group(1): image.split("/")[-1].replace('{{ docker_image_url }}', '')
315315
for image_var, image in image_map.items()
316316
}
317317
# Filter out unsupported images.

0 commit comments

Comments
 (0)