Merge "Add update_containers: false for mixed rhel component jobs"

This commit is contained in:
Zuul 2023-01-18 16:03:00 +00:00 committed by Gerrit Code Review
commit 1ffa53d9e3
1 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,10 @@ undercloud_undercloud_cleanup: false
# Container update settings
update_containers: >-
{% if containerized_overcloud|bool or containerized_undercloud|bool -%}
{% if registry_distro is defined and registry_distro|default('') is version('8', '==') and
job is defined and job.component is defined -%}
false
{%- elif containerized_overcloud|bool or containerized_undercloud|bool -%}
true
{%- endif -%}