File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
platforms/hyperledger-besu/charts Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,17 @@ data:
26
26
logging={{ .Values.node.besu.logging | quote }}
27
27
node-private-key-file={{.Values.node.besu.privateKeyPath | quote }}
28
28
cache-last-blocks={{ .Values.node.besu.cacheLastBlocks }}
29
+ sync-min-peers{{ .Values.node.besu.syncMinPeers }}
29
30
30
31
# Transaction Pool
31
32
tx-pool={{ .Values.node.besu.txPool.type | quote }}
32
- tx-pool-layer-max-capacity={{ .Values.node.besu.txPool.maxCapacity }}
33
+ {{ if eq .Values.node.besu.txPool.type "sequenced" -}}
34
+ tx-pool-max-size={{ .Values.node.besu.txPool.maxCapacity | quote }}
35
+ tx-pool-limit-by-account-percentage={{ .Values.node.besu.txPool.accountPercentage }}
36
+ {{ else }}
37
+ tx-pool-layer-max-capacity={{ .Values.node.besu.txPool.maxCapacity | quote }}
38
+ tx-pool-max-future-by-sender={{ .Values.node.besu.txPool.accountPercentage | quote }}
39
+ {{ end }}
33
40
34
41
{{ if .Values.node.besu.p2p.enabled -}}
35
42
# P2P network
Original file line number Diff line number Diff line change 49
49
pullPolicy : IfNotPresent
50
50
besu :
51
51
repository : hyperledger/besu
52
- tag : 23.10 .2
52
+ tag : 24.12 .2
53
53
hooks :
54
54
repository : ghcr.io/hyperledger/bevel-k8s-hooks
55
55
tag : qgt-0.2.12
62
62
besu :
63
63
identity : " supplychain"
64
64
cacheLastBlocks : 0
65
+ syncMinPeers : 3 # as 4 peers min is needed for ibft/qbft consensus
65
66
envBesuOpts : " "
66
67
resources :
67
68
cpuLimit : 0.25
@@ -107,6 +108,7 @@ node:
107
108
txPool :
108
109
type : " "
109
110
maxCapacity : 12
111
+ accountPercentage : 200 # if txPool is sequenced, this has to be [0 to 1] Example: 0.5. By default is 0.4
110
112
http :
111
113
allowlist : ' ["*"]'
112
114
metrics :
Original file line number Diff line number Diff line change 63
63
image :
64
64
besu :
65
65
repository : hyperledger/besu
66
- tag : 23.10 .2
66
+ tag : 24.12 .2
Original file line number Diff line number Diff line change 43
43
image :
44
44
besu :
45
45
repository : hyperledger/besu
46
- tag : 23.10 .2
46
+ tag : 24.12 .2
You can’t perform that action at this time.
0 commit comments