Merge "CI: Retry docker push on publish jobs" into stable/wallaby

This commit is contained in:
Zuul 2023-02-22 13:23:13 +00:00 committed by Gerrit Code Review
commit e9f0a9aaea
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,9 @@
push: yes
source: local
loop: "{{ docker_host_info.images }}"
register: push_status
until: push_status.failed is false
retries: 5
when: kolla_registry == 'dockerhub'
- block:
@ -39,4 +42,7 @@
repository: "quay.io/{{ item.RepoTags.0 }}"
source: local
loop: "{{ docker_host_info.images }}"
register: push_status
until: push_status.failed is false
retries: 5
when: kolla_registry == 'quay.io'