93951f2ed5
tags are not inherited for include_role therefore the change from include to import Co-authored-by: Hans Feldt <hafe@users.noreply.github.com>
24 lines
568 B
YAML
24 lines
568 B
YAML
---
|
|
- name: Configure defaults
|
|
debug:
|
|
msg: "Check roles/kubespray-defaults/defaults/main.yml"
|
|
tags:
|
|
- always
|
|
|
|
# do not run gather facts when bootstrap-os in roles
|
|
- name: set fallback_ips
|
|
import_tasks: fallback_ips.yml
|
|
when:
|
|
- "'bootstrap-os' not in ansible_play_role_names"
|
|
- fallback_ips is not defined
|
|
tags:
|
|
- always
|
|
|
|
- name: set no_proxy
|
|
import_tasks: no_proxy.yml
|
|
when:
|
|
- "'bootstrap-os' not in ansible_play_role_names"
|
|
- http_proxy is defined or https_proxy is defined
|
|
- no_proxy is not defined
|
|
tags:
|
|
- always
|