From e0eb2e3fdbc4c066acebc04fd33ae34a209e15a7 Mon Sep 17 00:00:00 2001 From: Joe Heck Date: Thu, 25 Jan 2018 15:56:58 -0800 Subject: [PATCH] adding memory request and limit to efk addon - running efk with minikube default memory (2048Mi) was running the set out of resources. Seemed like it should at least be aware it didn't have sufficient resources for the elasticSearch portion, so adding a request and limit based on cAdvisor observation of a running system. --- deploy/addons/efk/elasticsearch-rc.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deploy/addons/efk/elasticsearch-rc.yaml b/deploy/addons/efk/elasticsearch-rc.yaml index 3288dd0ffcf6..099f8b6cbd68 100644 --- a/deploy/addons/efk/elasticsearch-rc.yaml +++ b/deploy/addons/efk/elasticsearch-rc.yaml @@ -38,8 +38,10 @@ spec: resources: limits: cpu: 500m + memory: 2400Mi requests: cpu: 100m + memory: 2350Mi ports: - containerPort: 9200 name: db