Skip to content

Commit

Permalink
chore(elasticsearch): adjust resource consumption
Browse files Browse the repository at this point in the history
  • Loading branch information
deer-wmde committed Jul 6, 2023
1 parent 7339104 commit e489342
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions k8s/helmfile/env/staging/elasticsearch-1.values.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ annotations:
master:
resources:
requests:
cpu: "1"
memory: "1Gi"
cpu: "200m"
memory: "512Mi"
limits:
cpu: "1"
memory: "1Gi"
cpu: "300m"
memory: "750Mi"
persistence:
enabled: true
accessModes: [ "ReadWriteOnce" ]
Expand All @@ -23,11 +23,11 @@ master:
data:
resources:
requests:
cpu: "2"
memory: "4Gi"
cpu: "200m"
memory: "512Mi"
limits:
cpu: "2"
memory: "4Gi"
cpu: "300m"
memory: "750Mi"
persistence:
enabled: true
accessModes: [ "ReadWriteOnce" ]
Expand All @@ -37,8 +37,8 @@ data:
coordinating:
resources:
requests:
cpu: "1"
memory: "1Gi"
cpu: "200m"
memory: "256Mi"
limits:
cpu: "1"
memory: "1Gi"
cpu: "250m"
memory: "512Mi"

0 comments on commit e489342

Please sign in to comment.