Browse Source
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
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
4 deletions
-
roles/kubernetes/node/templates/kubelet-config.v1beta1.yaml.j2
-
roles/kubespray-defaults/defaults/main/main.yml
|
|
@ -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 %} |
|
|
|
|
|
@ -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('') }}" |
|
|
|