352297cf8d
* Fixup deploy of kubeadm etcd for Kubernetes v1.15.0 Change-Id: If42c2c75c4d278ba9475ebf76c243f3e6ee4d02e * undo renaming cloud config file Change-Id: Iafbd27c3887d6a2a6d0819c711f150ecf70c515d
21 lines
686 B
YAML
21 lines
686 B
YAML
---
|
|
# discovery_timeout modifies the discovery timeout
|
|
# This value must be smaller than kubeadm_join_timeout
|
|
discovery_timeout: 60s
|
|
kubeadm_join_timeout: 120s
|
|
|
|
# Optionally remove kube_proxy installed by kubeadm
|
|
kube_proxy_remove: false
|
|
|
|
# If non-empty, will use this string as identification instead of the actual hostname
|
|
kube_override_hostname: >-
|
|
{%- if cloud_provider is defined and cloud_provider in [ 'aws' ] -%}
|
|
{%- else -%}
|
|
{{ inventory_hostname }}
|
|
{%- endif -%}
|
|
|
|
# Requests a fresh upload of certificates from first master
|
|
kubeadm_etcd_refresh_cert_key: true
|
|
|
|
# Experimental kubeadm etcd deployment mode. Available only for new deployment
|
|
etcd_kubeadm_enabled: false
|