Skip to content
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
5 changes: 3 additions & 2 deletions etc/kayobe/pulp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -582,10 +582,11 @@ stackhpc_pulp_repository_container_repos_kolla_common:
# List of Kolla container image repositories.
stackhpc_pulp_repository_container_repos_kolla: >-
{%- set repos = [] -%}
{%- set image_tags = lookup('pipe', 'python3 ' ~ kayobe_config_path ~ '/../../tools/kolla-images.py list-tags') | from_yaml -%}
{%- for image in stackhpc_pulp_images_kolla_filtered -%}
{%- if image not in stackhpc_kolla_unbuildable_images[kolla_base_distro_and_version]-%}
{%- if image not in stackhpc_kolla_unbuildable_images[kolla_base_distro_and_version] -%}
{%- set image_repo = kolla_docker_namespace ~ "/" ~ image -%}
{%- set repo = {"name": image_repo} -%}
{%- set repo = {"name": image_repo, "include_tags": image_tags[image]} -%}
{%- set _ = repos.append(stackhpc_pulp_repository_container_repos_kolla_common | combine(repo)) -%}
{%- endif -%}
{%- endfor -%}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
features:
- |
Restrict the content that is synced to the client by using include tags.
This feature ensures that the tags as defined within
``kolla-image-tags.yml`` are synced.
Loading