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
This commit is contained in:
Matthew Mosesohn 2017-12-19 20:18:20 +00:00 committed by GitHub
parent a6975c1850
commit 127bc01857
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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