Adjust kubelet_event_record_qps to K8S default (#10826)

Also remove redundant check in the kubelet config template (we define a
default, so the setting will always be "true")
pull/10830/head
Max Gautier 2024-01-22 17:49:14 +01:00 committed by GitHub
parent a2ed5fcd3d
commit 22bb0976d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -135,9 +135,7 @@ tlsCipherSuites:
- {{ tls }}
{% endfor %}
{% endif %}
{% if kubelet_event_record_qps %}
eventRecordQPS: {{ kubelet_event_record_qps }}
{% endif %}
shutdownGracePeriod: {{ kubelet_shutdown_grace_period }}
shutdownGracePeriodCriticalPods: {{ kubelet_shutdown_grace_period_critical_pods }}
{% if not kubelet_fail_swap_on %}

View File

@ -645,9 +645,9 @@ host_os: >-
{{ ansible_system }}
{%- endif -%}
# Sets the eventRecordQPS parameter in kubelet-config.yaml. The default value is 5 (see types.go)
# Sets the eventRecordQPS parameter in kubelet-config.yaml.
# Setting it to 0 allows unlimited requests per second.
kubelet_event_record_qps: 5
kubelet_event_record_qps: 50
proxy_env_defaults:
http_proxy: "{{ http_proxy | default('') }}"