
This job has no nodes; the playbook needs to run on localhost. The only tasks use the uri module without local files, so should be safe. Change-Id: Ic012426a66be3b85efe9af35089addf1316dfa63
11 lines
269 B
YAML
11 lines
269 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- name: Promote dockerhub image
|
|
when: credentials is defined
|
|
block:
|
|
- name: Promote image
|
|
loop: "{{ images }}"
|
|
loop_control:
|
|
loop_var: image
|
|
include_tasks: promote-retag.yaml
|