Skip to content

Bump proxysql to be compatible with K-A bug #2112339 fix #1692

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions etc/kayobe/kolla-image-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ kolla_image_tags:
rocky-9: master-rocky-9-20250305T111730
prometheus:
rocky-9: master-rocky-9-20250430T112026
proxysql:
rocky-9: master-rocky-9-20250609T102146
ubuntu-noble: master-ubuntu-noble-20250609T102146
rabbitmq:
rocky-9: master-rocky-9-20250502T080944
skyline:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fixes:
- |
Bumped ProxySQL Kolla image to be compatible with Kolla-Ansible bug
fix: `Missing default hostgroup for user in proxysql Edit
<https://bugs.launchpad.net/kolla-ansible/+bug/2112339>`__
2 changes: 1 addition & 1 deletion tools/kolla-images.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def check_image_map(kolla_ansible_path: str):
image_map = yaml.safe_load(image_map_str)
image_var_re = re.compile(r"^([a-z0-9_]+)_image$")
image_map = {
image_var_re.match(image_var).group(1): image.split("/")[-1].replace('{{ docker_image_name_prefix }}', '')
image_var_re.match(image_var).group(1): image.split("/")[-1].replace('{{ docker_image_url }}', '')
for image_var, image in image_map.items()
}
# Filter out unsupported images.
Expand Down
Loading