
The role tried to include non-existing file which was forgotten while we moved the role to this repo. This inclusion is only actual for cases when we consume images from a buildset registry. Change-Id: I1510edf7bdc78f9c61f7722e2c7848e152edf892
14 lines
370 B
YAML
14 lines
370 B
YAML
---
|
|
- name: Set buildset_registry alias variable when using ip
|
|
set_fact:
|
|
buildset_registry_alias: zuul-jobs.buildset-registry
|
|
when:
|
|
- buildset_registry.host | ipaddr
|
|
|
|
- name: Set buildset_registry alias variable when using name
|
|
set_fact:
|
|
buildset_registry_alias: "{{ buildset_registry.host }}"
|
|
when:
|
|
- not ( buildset_registry.host | ipaddr )
|
|
...
|