d689f57c94
* Support kubeadm patches in v1beta3 * Update kubeadm patches sample files in inventory * Fix pre-commit syntax * Set kubeadm_patches enabled to false in sample inventory
18 lines
No EOL
547 B
YAML
18 lines
No EOL
547 B
YAML
---
|
|
# discovery_timeout modifies the discovery timeout
|
|
# This value must be smaller than kubeadm_join_timeout
|
|
discovery_timeout: 60s
|
|
kubeadm_join_timeout: 120s
|
|
|
|
# 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 -%}
|
|
|
|
# kubeadm patches path
|
|
kubeadm_patches:
|
|
enabled: true
|
|
source_dir: "{{ inventory_dir }}/patches"
|
|
dest_dir: "{{ kube_config_dir }}/patches" |