Skip to content

Commit 601e002

Browse files
authored
feat: update celestia-node to v0.26.4 (#143)
1 parent 42f4290 commit 601e002

4 files changed

Lines changed: 34 additions & 40 deletions

File tree

charts/celestia-node/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apiVersion: v2
55
appVersion: v0.26.4
66
dependencies:
77
- name: common-celestia-node
8-
version: 0.1.8
8+
version: 0.1.9
99
repository: https://celestiaorg.github.io/helm-charts
1010
- name: common
1111
repository: oci://registry-1.docker.io/bitnamicharts
@@ -24,4 +24,4 @@ maintainers:
2424
name: celestia-node
2525
sources:
2626
- https://github.com/celestiaorg/helm-charts
27-
version: 0.12.8
27+
version: 0.12.9

charts/celestia-node/values.yaml

Lines changed: 30 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ node:
211211
High: 1000
212212
GracePeriod: 1m0s
213213
RPC:
214-
Address: localhost
214+
Address: "0.0.0.0"
215215
Port: "26658"
216216
SkipAuth: false
217217
CORS:
@@ -225,15 +225,12 @@ node:
225225
UseBitswap: true
226226
EDSStoreParams:
227227
RecentBlocksCacheSize: 10
228-
ShrExEDSParams:
229-
ServerReadTimeout: 5s
230-
ServerWriteTimeout: 1m0s
231-
HandleRequestTimeout: 1m0s
232-
ConcurrencyLimit: 10
233-
BufferSize: 32768
234-
ShrExNDParams:
235-
ServerReadTimeout: 5s
236-
ServerWriteTimeout: 1m0s
228+
ShrexClient:
229+
ReadTimeout: 2m0s
230+
WriteTimeout: 5s
231+
ShrexServer:
232+
ReadTimeout: 5s
233+
WriteTimeout: 1m0s
237234
HandleRequestTimeout: 1m0s
238235
ConcurrencyLimit: 10
239236
PeerManagerParams:
@@ -245,14 +242,15 @@ node:
245242
PeersLimit: 5
246243
AdvertiseInterval: 1h0m0s
247244
Header:
248-
TrustedHash: ""
249245
TrustedPeers: []
250246
Store:
251247
StoreCacheSize: 512
252248
IndexCacheSize: 2048
253249
WriteBatchSize: 64
254250
Syncer:
255-
TrustingPeriod: 336h0m0s
251+
PruningWindow: 0s
252+
SyncFromHash: ""
253+
SyncFromHeight: 0
256254
Server:
257255
WriteDeadline: 8s
258256
ReadDeadline: 1m0s
@@ -309,7 +307,7 @@ node:
309307
High: 1000
310308
GracePeriod: 1m0s
311309
RPC:
312-
Address: localhost
310+
Address: "0.0.0.0"
313311
Port: "26658"
314312
SkipAuth: false
315313
CORS:
@@ -323,15 +321,12 @@ node:
323321
UseBitswap: true
324322
EDSStoreParams:
325323
RecentBlocksCacheSize: 10
326-
ShrExEDSParams:
327-
ServerReadTimeout: 5s
328-
ServerWriteTimeout: 1m0s
329-
HandleRequestTimeout: 1m0s
330-
ConcurrencyLimit: 10
331-
BufferSize: 32768
332-
ShrExNDParams:
333-
ServerReadTimeout: 5s
334-
ServerWriteTimeout: 1m0s
324+
ShrexClient:
325+
ReadTimeout: 2m0s
326+
WriteTimeout: 5s
327+
ShrexServer:
328+
ReadTimeout: 5s
329+
WriteTimeout: 1m0s
335330
HandleRequestTimeout: 1m0s
336331
ConcurrencyLimit: 10
337332
PeerManagerParams:
@@ -343,14 +338,15 @@ node:
343338
PeersLimit: 5
344339
AdvertiseInterval: 1h0m0s
345340
Header:
346-
TrustedHash: ""
347341
TrustedPeers: []
348342
Store:
349343
StoreCacheSize: 512
350344
IndexCacheSize: 2048
351345
WriteBatchSize: 64
352346
Syncer:
353-
TrustingPeriod: 336h0m0s
347+
PruningWindow: 0s
348+
SyncFromHash: ""
349+
SyncFromHeight: 0
354350
Server:
355351
WriteDeadline: 8s
356352
ReadDeadline: 1m0s
@@ -414,7 +410,7 @@ node:
414410
High: 100
415411
GracePeriod: 1m0s
416412
RPC:
417-
Address: localhost
413+
Address: "0.0.0.0"
418414
Port: "26658"
419415
SkipAuth: false
420416
CORS:
@@ -428,15 +424,12 @@ node:
428424
UseBitswap: true
429425
EDSStoreParams:
430426
RecentBlocksCacheSize: 10
431-
ShrExEDSParams:
432-
ServerReadTimeout: 5s
433-
ServerWriteTimeout: 1m0s
434-
HandleRequestTimeout: 1m0s
435-
ConcurrencyLimit: 10
436-
BufferSize: 32768
437-
ShrExNDParams:
438-
ServerReadTimeout: 5s
439-
ServerWriteTimeout: 1m0s
427+
ShrexClient:
428+
ReadTimeout: 2m0s
429+
WriteTimeout: 5s
430+
ShrexServer:
431+
ReadTimeout: 5s
432+
WriteTimeout: 1m0s
440433
HandleRequestTimeout: 1m0s
441434
ConcurrencyLimit: 10
442435
PeerManagerParams:
@@ -450,14 +443,15 @@ node:
450443
PeersLimit: 5
451444
AdvertiseInterval: 1h0m0s
452445
Header:
453-
TrustedHash: ""
454446
TrustedPeers: []
455447
Store:
456448
StoreCacheSize: 512
457449
IndexCacheSize: 2048
458450
WriteBatchSize: 512
459451
Syncer:
460-
TrustingPeriod: 336h0m0s
452+
PruningWindow: 0s
453+
SyncFromHash: ""
454+
SyncFromHeight: 0
461455
Server:
462456
WriteDeadline: 8s
463457
ReadDeadline: 1m0s

common-charts/common-celestia-node/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: library
1515

1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
18-
version: 0.1.8
18+
version: 0.1.9
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application and it is recommended to use it with quotes.

common-charts/common-celestia-node/templates/_bridge_config.toml.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ define "common-celestia-node.bridge_config.toml" }}
1+
{{- define "common-celestia-node.bridge_config.toml" -}}
22
[Node]
33
StartupTimeout = "{{ .Values.node.config.bridge.configtoml.Node.StartupTimeout }}"
44
ShutdownTimeout = "{{ .Values.node.config.bridge.configtoml.Node.ShutdownTimeout }}"

0 commit comments

Comments
 (0)