Skip to content

Fix kolla-images.py for latest master Kolla Ansible #1693

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

Closed
wants to merge 1 commit into from
Closed
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
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