Skip to content

Commit

Permalink
feat: get geth working
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhobson committed Aug 17, 2023
1 parent b38256d commit cbab561
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions charts/geth-helm/templates/node-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ spec:
image: {{ .Values.geth.image.repository }}:{{ .Values.geth.image.tag }}
resources:
requests:
memory: "8000Mi"
memory: {{ .Values.geth.memory }}
limits:
memory: "8500Mi"
memory: {{ .Values.geth.memory }}
imagePullPolicy: {{ .Values.geth.imagePullPolicy }}
command: ["geth"]
args:
Expand All @@ -36,6 +36,7 @@ spec:
- --http.vhosts=*
- --http.addr=0.0.0.0
- --cache=1024
- --ipcdisable
ports:
- name: rpc
containerPort: 8545
Expand Down
1 change: 1 addition & 0 deletions charts/geth-helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ geth:
storageClass: azurefile
storage: 5Gi
accessMode: ReadWriteMany
memory: 2Gi

0 comments on commit cbab561

Please sign in to comment.