mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-17 03:00:07 -03:30
* feat: add user facing variable with default * feat: remove rolebinding to anonymous users after init and upgrade * feat: use file discovery for secondary control plane nodes * feat: use file discovery for nodes * fix: do not fail if rolebinding does not exist * docs: add warning about kube_api_anonymous_auth * style: improve readability of delegate_to parameter * refactor: rename discovery kubeconfig file * test: enable new variable in hardening and upgrade test cases * docs: add option to config parameters * test: multiple instances and upgrade
16 lines
531 B
YAML
16 lines
531 B
YAML
---
|
|
# discovery_timeout modifies the discovery timeout
|
|
# This value must be smaller than kubeadm_join_timeout
|
|
discovery_timeout: 60s
|
|
kubeadm_join_timeout: 120s
|
|
|
|
# Enable kubeadm file discovery if anonymous access has been removed
|
|
kubeadm_use_file_discovery: "{{ remove_anonymous_access }}"
|
|
|
|
# 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 -%}
|