diff --git a/ansible/container-image-build.yml b/ansible/container-image-build.yml index dd88951d0..532069a3c 100644 --- a/ansible/container-image-build.yml +++ b/ansible/container-image-build.yml @@ -47,7 +47,7 @@ kolla-build \ --config-dir {{ kolla_build_config_path }} \ {% if item.type is defined %}--type {{ item.type }}{% endif %} \ - {% if kolla_docker_registry is defined %}--registry {{ kolla_docker_registry }}{% endif %} \ + {% if kolla_docker_registry != "" and kolla_docker_registry != None %}--registry {{ kolla_docker_registry }}{% endif %} \ {% if push_images | bool %}--push{% endif %} \ {{ item.regexes }} 2>&1 | tee --append {{ kolla_build_log_path }} with_items: "{{ container_image_sets }}"