a8084e54ef
Change-Id: I1b639e5ed221301219f808a53dcb938cccefa019 Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
21 lines
905 B
YAML
21 lines
905 B
YAML
- name: List tags
|
|
uri:
|
|
url: "https://hub.docker.com/v2/repositories/{{ zj_image.repository }}/tags?page_size=1000"
|
|
status_code: 200
|
|
register: tags
|
|
- name: Delete all change tags older than the cutoff
|
|
no_log: true
|
|
loop: "{{ tags.json.results }}"
|
|
loop_control:
|
|
loop_var: zj_docker_tag
|
|
when:
|
|
- zj_docker_tag.name.startswith('change_') or zj_docker_tag.name.startswith(zuul.pipeline)
|
|
# Was updated > 24 hours ago:
|
|
- "{{ ((ansible_date_time.iso8601 | regex_replace('^(....-..-..)T(..:..:..).*Z', '\\1 \\2') | to_datetime) - (zj_docker_tag.last_updated | regex_replace('^(....-..-..)T(..:..:..).*Z', '\\1 \\2') | to_datetime)).seconds > 86400 }}"
|
|
uri:
|
|
url: "https://hub.docker.com/v2/repositories/{{ zj_image.repository }}/tags/{{ zj_docker_tag.name }}/"
|
|
method: DELETE
|
|
status_code: [200, 204]
|
|
headers:
|
|
Authorization: "JWT {{ jwt_token.json.token }}"
|