Browse Source

Fix DNS configuration when using resolvconf_mode='host_resolvconf' during scale (#23) (#8361)

pull/8372/head
Unai Arríen 3 years ago
committed by GitHub
parent
commit
8fbd08d027
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions
  1. 8
      scale.yml

8
scale.yml

@ -98,3 +98,11 @@
- { role: kubernetes/kubeadm, tags: kubeadm }
- { role: kubernetes/node-label, tags: node-label }
- { role: network_plugin, tags: network }
- hosts: k8s_cluster
gather_facts: False
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
environment: "{{ proxy_disable_env }}"
roles:
- { role: kubespray-defaults }
- { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf }
Loading…
Cancel
Save