diff options
author | 2024-03-12 16:44:56 +0100 | |
---|---|---|
committer | 2024-03-14 13:45:13 +0000 | |
commit | 8cbb3d9b964b774b1400df5d909913b669c2a243 (patch) | |
tree | ee3efa1ba9268b223a99cf6822d0b4806d27e89c /kubernetes/common/elasticsearch/components/curator/values.yaml | |
parent | 9468364310a767b4d68f35a94f15e79ff38c5908 (diff) |
[COMMON] Harmonize resource settings, Part 2
Some settings are still wrongly interpreted (e.g. 0.02Gi)
Therefor they are changed to non-floating numbers (e.g. 20Mi)
Issue-ID: OOM-3273
Change-Id: Icc88dead1ac5b1df8629d6adcc438a739e20522e
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Diffstat (limited to 'kubernetes/common/elasticsearch/components/curator/values.yaml')
-rw-r--r-- | kubernetes/common/elasticsearch/components/curator/values.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/common/elasticsearch/components/curator/values.yaml b/kubernetes/common/elasticsearch/components/curator/values.yaml index 0a5080e917..00f113b5bb 100644 --- a/kubernetes/common/elasticsearch/components/curator/values.yaml +++ b/kubernetes/common/elasticsearch/components/curator/values.yaml @@ -124,10 +124,10 @@ resources: # lines, adjust them as necessary, and remove the curly braces after 'resources:'. limits: {} # cpu: "100m" - # memory: "0.1Gi" + # memory: "100Mi" requests: {} # cpu: "100m" - # memory: "0.1Gi" + # memory: "100Mi" priorityClassName: "" # extraVolumes and extraVolumeMounts allows you to mount other volumes # Example Use Case: mount ssl certificates when elasticsearch has tls enabled |