Skip to content

Commit

Permalink
bump k8s geth to 1.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Apr 25, 2024
1 parent ce9ad2d commit fcab6d4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
2 changes: 1 addition & 1 deletion charts/geth/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
name: geth
description: A simulated go-ethereum network
version: 0.4.3
appVersion: '1.10.25'
appVersion: '1.12.2'
16 changes: 4 additions & 12 deletions charts/geth/templates/geth-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,21 @@ spec:
- '/root/.ethereum/devchain'
- '--unlock'
- '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266'
- '--unlock'
- '0x70997970C51812dc3A010C7d01b50e0d17dc79C8'
- '--unlock'
- '0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC'
- '--mine'
- '--miner.etherbase'
- '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266'
- '--ipcdisable'
- '--http'
- '--http.vhosts'
- '*'
- '--http.api'
- 'admin,debug,web3,eth,txpool,personal,clique,miner,net'
- '--http.addr'
- '0.0.0.0'
- '--http.port=8544'
- '--ws'
- '--ws.api'
- 'admin,debug,web3,eth,txpool,personal,clique,miner,net'
- '--ws.origins'
- '*'
- '--ws.addr'
Expand All @@ -95,14 +95,6 @@ spec:
- '0'
- '--dev.period'
- '{{ .Values.geth.blocktime }}'
- '--miner.threads'
- '1'
- '--miner.gasprice'
- '10000000000'
- '--miner.gastarget'
- '80000000000'
- '--miner.gaslimit'
- '{{ .Values.geth.targetGasLimit }}'
- '--dev.gaslimit'
- '{{ .Values.geth.startGaslimit }}'
ports:
Expand Down
2 changes: 1 addition & 1 deletion charts/geth/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ replicas: 1
geth:
image:
image: ethereum/client-go
version: v1.10.25
version: v1.12.2

networkid: 1337
blocktime: 1
Expand Down
2 changes: 1 addition & 1 deletion k8s/pkg/helm/ethereum/geth.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func defaultProps() *Props {
"geth": map[string]interface{}{
"image": map[string]interface{}{
"image": gethImage,
"version": "v1.10.25",
"version": "v1.12.2",
},
},
"resources": map[string]interface{}{
Expand Down

0 comments on commit fcab6d4

Please sign in to comment.