Merge "CI: Retry docker push on publish jobs"

This commit is contained in:
Zuul 2023-02-21 17:26:34 +00:00 committed by Gerrit Code Review
commit fd952d8832
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'