Skip to content

Commit

Permalink
chore(elasticsearch): reduce CPU requests and limits on staging (#1260)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka authored Nov 14, 2023
1 parent fcecb6a commit c67ad02
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions k8s/helmfile/env/staging/elasticsearch-1.values.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ master:
heapSize: 512m
resources:
requests:
cpu: "1"
cpu: "250m"
memory: "1Gi"
limits:
cpu: "1"
cpu: "500m"
memory: "1Gi"
persistence:
enabled: true
Expand All @@ -30,7 +30,7 @@ data:
heapSize: 4096m
resources:
requests:
cpu: "1"
cpu: "500m"
memory: "8Gi"
limits:
cpu: "1"
Expand All @@ -49,10 +49,10 @@ coordinating:
heapSize: 512m
resources:
requests:
cpu: "0.5"
cpu: "250m"
memory: "1Gi"
limits:
cpu: "0.5"
cpu: "500m"
memory: "1Gi"
livenessProbe:
initialDelaySeconds: 600
Expand Down

0 comments on commit c67ad02

Please sign in to comment.