elasticseach: lower cpu request for metrics pods

This commit is contained in:
Sameer Naik
2017-09-13 15:32:20 +05:30
parent 93c95e6340
commit 6c89d9617f
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ The following tables lists the configurable parameters of the Elasticsearch char
| `metrics.image.tag` | Metrics exporter image tag | `1.0.1` |
| `metrics.image.pullPolicy` | Metrics exporter image pull policy | `IfNotPresent` |
| `metrics.service.type` | Metrics exporter endpoint service type | `ClusterIP` |
| `metrics.resources` | Metrics exporter resource requests/limit | `nil` |
| `metrics.resources` | Metrics exporter resource requests/limit | `requests: { cpu: "25m" }` |
The above parameters map to the env variables defined in [bitnami/elasticsearch](http://github.com/bitnami/bitnami-docker-elasticsearch). For more information please refer to the [bitnami/elasticsearch](http://github.com/bitnami/bitnami-docker-elasticsearch) image documentation.
+3 -1
View File
@@ -101,4 +101,6 @@ metrics:
prometheus.io/port: "9108"
service:
type: ClusterIP
resources: {}
resources:
requests:
cpu: 25m