diff --git a/charts/sequencer/Chart.yaml b/charts/sequencer/Chart.yaml index f127768d48..64f5b4cb6d 100644 --- a/charts/sequencer/Chart.yaml +++ b/charts/sequencer/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.18.0 +version: 0.18.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/charts/sequencer/templates/statefulsets.yaml b/charts/sequencer/templates/statefulsets.yaml index 588f75a5d7..5e87fbcf21 100644 --- a/charts/sequencer/templates/statefulsets.yaml +++ b/charts/sequencer/templates/statefulsets.yaml @@ -52,6 +52,13 @@ spec: - containerPort: {{ .Values.ports.sequencerMetrics }} name: seq-metric {{- end }} + resources: + requests: + cpu: {{ .Values.resources.sequencer.requests.cpu }} + memory: {{ .Values.resources.sequencer.requests.memory }} + limits: + cpu: {{ .Values.resources.sequencer.limits.cpu }} + memory: {{ .Values.resources.sequencer.limits.memory }} - name: cometbft imagePullPolicy: IfNotPresent command: [ "cometbft", "start" ] @@ -78,6 +85,13 @@ spec: - containerPort: {{ .Values.ports.cometbftMetrics }} name: cometbft-metric {{- end }} + resources: + requests: + cpu: {{ .Values.resources.cometbft.requests.cpu }} + memory: {{ .Values.resources.cometbft.requests.memory }} + limits: + cpu: {{ .Values.resources.cometbft.limits.cpu }} + memory: {{ .Values.resources.cometbft.limits.memory }} volumes: - name: cometbft-config-volume configMap: diff --git a/charts/sequencer/values.yaml b/charts/sequencer/values.yaml index ef5b620cb1..62478cda7c 100644 --- a/charts/sequencer/values.yaml +++ b/charts/sequencer/values.yaml @@ -179,6 +179,22 @@ cometbft: secret: resourceName: "projects/$PROJECT_ID/secrets/privValidatorKey/versions/latest" +resources: + cometbft: + requests: + cpu: 4000m + memory: 4Gi + limits: + cpu: 4000m + memory: 4Gi + sequencer: + requests: + cpu: 4000m + memory: 4Gi + limits: + cpu: 4000m + memory: 4Gi + sequencer-relayer: enabled: false diff --git a/dev/values/validators/all.yml b/dev/values/validators/all.yml index 7e09b12ef6..621ce1d11e 100644 --- a/dev/values/validators/all.yml +++ b/dev/values/validators/all.yml @@ -34,5 +34,21 @@ genesis: - address: astria13ahqz4pjqfmynk9ylrqv4fwe4957x2p0h5782u balance: "48" +resources: + cometbft: + requests: + cpu: 1000m + memory: 500Mi + limits: + cpu: 1000m + memory: 500Mi + sequencer: + requests: + cpu: 1000m + memory: 500Mi + limits: + cpu: 1000m + memory: 500Mi + storage: enabled: false