Browse Source
Merge pull request #3207 from mirwan/fix_3206
Fix target hosts generation when /etc/hosts does not contain 127.0.0.1 or ::1
pull/3219/head
k8s-ci-robot
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
roles/kubernetes/preinstall/tasks/0090-etchosts.yml
|
|
@ -40,7 +40,7 @@ |
|
|
|
- name: Hosts | Update target hosts file entries dict with required entries |
|
|
|
set_fact: |
|
|
|
etc_hosts_localhosts_dict_target: >- |
|
|
|
{%- set target_entries = etc_hosts_localhosts_dict.get(item.key, []) | difference(item.value.get('unexpected' ,[])) -%} |
|
|
|
{%- set target_entries = (etc_hosts_localhosts_dict|default({})).get(item.key, []) | difference(item.value.get('unexpected' ,[])) -%} |
|
|
|
{{ etc_hosts_localhosts_dict_target|default({}) | combine({item.key: (target_entries + item.value.expected)|unique}) }} |
|
|
|
with_dict: "{{ etc_hosts_localhost_entries }}" |
|
|
|
|
|
|
|