mirror of https://github.com/k3s-io/k3s
Merge pull request #62430 from bmoyles0117/increase-fluentd-cpu-limit
Automatic merge from submit-queue (batch tested with PRs 62430, 62470). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Increase CPU limit to 1000 millicores to support 100kb/s throughput. **What this PR does / why we need it**: The e2e tests for fluentd in gke are failing due to conservative CPU limits for the logging agent. After doing some research we have determined that 1 core is necessary to achieve 100kb/s throughput. **Release note:** ```release-note [fluentd-gcp addon] Increase CPU limit for fluentd to 1 core to achieve 100kb/s throughput. ```pull/8/head
commit
f001762f2d
|
@ -31,6 +31,6 @@ spec:
|
|||
- name: MEMORY_REQUEST
|
||||
value: 200Mi
|
||||
- name: CPU_LIMIT
|
||||
value: 300m
|
||||
value: 1000m
|
||||
- name: MEMORY_LIMIT
|
||||
value: 500Mi
|
||||
|
|
Loading…
Reference in New Issue