build-container-image: improve the reliabilty

build-container-image may ends up pushing large files. Network is not
always as reliable as we want. This commit ensures we retry several
times in case of failure.

Change-Id: Ieaf92a8c3531e24ab5e41783b540de1df806c02f
This commit is contained in:
Gonéri Le Bouder 2021-10-08 11:15:38 -04:00
parent d5e4d55c15
commit ad56b0b4eb
No known key found for this signature in database
GPG Key ID: 049ED9B94765572E
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,9 @@
- name: Tag image for buildset registry
command: >-
{{ container_command }} tag {{ zj_image.repository }}:{{ zj_image_tag }} {{ buildset_registry_alias }}:{{ buildset_registry.port }}/{{ zj_image.repository }}:{{ zj_image_tag }}
register: result
until: result is succeeded
retries: 3
loop: "{{ zj_image.tags | default(['latest']) }}"
loop_control:
loop_var: zj_image_tag
@ -8,6 +11,9 @@
- name: Push tag to buildset registry
command: >-
{{ container_command }} push {{ buildset_registry_alias }}:{{ buildset_registry.port }}/{{ zj_image.repository }}:{{ zj_image_tag }}
register: result
until: result is succeeded
retries: 3
loop: "{{ zj_image.tags | default(['latest']) }}"
loop_control:
loop_var: zj_image_tag