From 3eaa830d92bfc89005d6d7d7e7ec5fd6393c5f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Aceda=C5=84ski?= Date: Sat, 31 Aug 2019 19:31:42 +0200 Subject: [PATCH 1/2] kibana: fixed bogus request of 500 millibytes mem --- kibana/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibana/values.yaml b/kibana/values.yaml index cef949e62..936e69ed9 100755 --- a/kibana/values.yaml +++ b/kibana/values.yaml @@ -34,7 +34,7 @@ podAnnotations: {} resources: requests: cpu: "100m" - memory: "500m" + memory: "500Mi" limits: cpu: "1000m" memory: "1Gi" From 9abe4286e273420f4f62f46ca42c931cda66224a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Aceda=C5=84ski?= Date: Sat, 31 Aug 2019 19:32:19 +0200 Subject: [PATCH 2/2] Update README.md --- kibana/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibana/README.md b/kibana/README.md index 2fe63fd35..9a7932fff 100644 --- a/kibana/README.md +++ b/kibana/README.md @@ -49,7 +49,7 @@ helm install --name kibana elastic/kibana --set imageTag=7.3.0 | `imageTag` | The Kibana docker image tag | `7.3.0` | | `imagePullPolicy` | The Kubernetes [imagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/#updating-images) value | `IfNotPresent` | | `podAnnotations` | Configurable [annotations](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/) applied to all Kibana pods | `{}` | -| `resources` | Allows you to set the [resources](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/) for the statefulset | `requests.cpu: 100m`
`requests.memory: 2Gi`
`limits.cpu: 1000m`
`limits.memory: 2Gi` | +| `resources` | Allows you to set the [resources](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/) for the statefulset | `requests.cpu: 100m`
`requests.memory: 500Mi`
`limits.cpu: 1000m`
`limits.memory: 2Gi` | | `protocol` | The protocol that will be used for the readinessProbe. Change this to `https` if you have `server.ssl.enabled: true` set | `http` | | `serverHost` | The [`server.host`](https://www.elastic.co/guide/en/kibana/current/settings.html) Kibana setting. This is set explicitly so that the default always matches what comes with the docker image. | `0.0.0.0` | | `healthCheckPath` | The path used for the readinessProbe to check that Kibana is ready. If you are setting `server.basePath` you will also need to update this to `/${basePath}/app/kibana` | `/app/kibana` |