mirror of https://github.com/k3s-io/k3s
Merge pull request #50611 from crassirostris/fix-kibana-startup
Automatic merge from submit-queue Increase kibana CPU limit to sped up the startup Similarly to Elasticsearch, Kibana requires some additional CPU during startup to build caches. Fixes https://github.com/kubernetes/kubernetes/issues/50610 /cc @piosz @coffeepac @aknuds1pull/6/head
commit
5e0a539cf1
|
@ -21,9 +21,9 @@ spec:
|
|||
- name: kibana-logging
|
||||
image: docker.elastic.co/kibana/kibana:5.5.1
|
||||
resources:
|
||||
# keep request = limit to keep this container in guaranteed class
|
||||
# need more cpu upon initialization, therefore burstable class
|
||||
limits:
|
||||
cpu: 100m
|
||||
cpu: 1000m
|
||||
requests:
|
||||
cpu: 100m
|
||||
env:
|
||||
|
|
Loading…
Reference in New Issue