Skip to content
Snippets Groups Projects
Unverified Commit 127bc018 authored by Matthew Mosesohn's avatar Matthew Mosesohn Committed by GitHub
Browse files

Do not override kubelet hostname if cloud_provider is used (#2095)

Starting with Kubernetes v1.8.4, kubelet ignores the AWS cloud
provider string and uses the override hostname, which fails
Node admission checks.

Fixes #2094
parent a6975c18
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,12 @@ kubelet_custom_flags: []
kube_hyperkube_image_repo: ""
# If non-empty, will use this string as identification instead of the actual hostname
kube_override_hostname: "{{ ansible_hostname }}"
kube_override_hostname: >-
{% if cloud_provider is defined %}
false
{% else %}
{{ ansible_hostname }}
{% endif %}
# cAdvisor port
kube_cadvisor_port: 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment