Skip to content
Snippets Groups Projects
Unverified Commit 51a5f54f authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub
Browse files

Merge pull request #3335 from AtzeDeVries/fix/ubuntu-xenial-resolv-conf

Fix/ubuntu xenial resolv conf
parents e5550b51 4cbd9766
No related branches found
No related tags found
No related merge requests found
...@@ -8,3 +8,14 @@ ...@@ -8,3 +8,14 @@
standalone_kubelet: >- standalone_kubelet: >-
{%- if inventory_hostname in groups['kube-master'] and inventory_hostname not in groups['kube-node'] -%}true{%- else -%}false{%- endif -%} {%- if inventory_hostname in groups['kube-master'] and inventory_hostname not in groups['kube-node'] -%}true{%- else -%}false{%- endif -%}
kubelet_cgroup_driver_detected: "{{ docker_cgroup_driver_result.stdout }}" kubelet_cgroup_driver_detected: "{{ docker_cgroup_driver_result.stdout }}"
- name: os specific vars
include_vars: "{{ item }}"
with_first_found:
- files:
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version|lower|replace('/', '_') }}.yml"
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_release }}.yml"
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version|lower|replace('/', '_') }}.yml"
- "{{ ansible_distribution|lower }}.yml"
- "{{ ansible_os_family|lower }}.yml"
skip: true
---
kube_resolv_conf: "/run/systemd/resolve/resolv.conf"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment