Skip to content

Commit

Permalink
[geth] remove --metrics.expensive flag (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
VladStarr authored Sep 3, 2024
1 parent 0edacb9 commit 24f4f74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dysnix/geth/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: geth
description: Go-ethereum blockchain node Helm Chart

version: 1.1.0
version: 1.1.1
appVersion: v1.14.8

keywords:
Expand Down
3 changes: 0 additions & 3 deletions dysnix/geth/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,6 @@ spec:
- --metrics
- --metrics.addr=0.0.0.0
- --metrics.port={{ .Values.config.metrics.port }}
{{- if .Values.config.metrics.expensive }}
- --metrics.expensive
{{- end }}
{{- end }}
{{- if .Values.config.pprof.enabled }}
- --pprof
Expand Down
5 changes: 2 additions & 3 deletions dysnix/geth/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ persistence:
# type: hostPath
mountPath: "" # don't forget to change .Values.config.datadir accordingly
pvc:
size: 900Gi # starting point for snap-synced node as of 2023-09
size: 1200Gi # starting point for snap-synced node as of 2024-09
accessMode: ReadWriteOnce
storageClass: "" # set to "-" if you want to manually create persistent volume
annotations: {}
Expand Down Expand Up @@ -282,7 +282,7 @@ config:
useHostPort: false # if set to true .Values.services.p2p will be disabled, and hostPort will be allocated instead
port: 30303
discoveryPort: 30301
nat: "" # you may want to set it if you are running P2P via NodePort/LoadBalancer k8s svc
nat: "" # set it when geth P2P endpoint is exposed via LoadBalancer k8s service
maxPeers: 50
noDiscovery: false
bootstrapNodes: []
Expand All @@ -295,7 +295,6 @@ config:
# - rpc=5
metrics:
enabled: false
expensive: false
port: 6060
pprof:
enabled: false
Expand Down

0 comments on commit 24f4f74

Please sign in to comment.