From 8928f0efdf53582902f8a619201ae79a339a95db Mon Sep 17 00:00:00 2001 From: smuu <18609909+smuu@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:22:39 +0200 Subject: [PATCH] feat(node): bump to v0.16.2 (#43) Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com> --- .github/workflows/releaser.yaml | 1 + charts/celestia-node/Chart.yaml | 2 +- charts/celestia-node/README.md | 6 +- charts/celestia-node/values.yaml | 4 +- .../config/node/bridge/v0.16.2/config.toml | 80 +++++++++++++++++ scripts/config/node/full/v0.16.2/config.toml | 87 ++++++++++++++++++ scripts/config/node/light/v0.16.2/config.toml | 89 +++++++++++++++++++ 7 files changed, 263 insertions(+), 6 deletions(-) create mode 100644 scripts/config/node/bridge/v0.16.2/config.toml create mode 100644 scripts/config/node/full/v0.16.2/config.toml create mode 100644 scripts/config/node/light/v0.16.2/config.toml diff --git a/.github/workflows/releaser.yaml b/.github/workflows/releaser.yaml index 4d355b2..564c750 100644 --- a/.github/workflows/releaser.yaml +++ b/.github/workflows/releaser.yaml @@ -4,6 +4,7 @@ on: push: branches: - main + - release/** jobs: release: diff --git a/charts/celestia-node/Chart.yaml b/charts/celestia-node/Chart.yaml index 9c35a7f..00c27ce 100644 --- a/charts/celestia-node/Chart.yaml +++ b/charts/celestia-node/Chart.yaml @@ -2,7 +2,7 @@ annotations: category: celestia licenses: Apache-2.0 apiVersion: v2 -appVersion: v0.16.1 +appVersion: v0.16.2 dependencies: - name: common repository: oci://registry-1.docker.io/bitnamicharts diff --git a/charts/celestia-node/README.md b/charts/celestia-node/README.md index 8846acf..94c0dc0 100644 --- a/charts/celestia-node/README.md +++ b/charts/celestia-node/README.md @@ -1,6 +1,6 @@ # celestia-node -![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) ![AppVersion: v0.16.1](https://img.shields.io/badge/AppVersion-v0.16.1-informational?style=flat-square) +![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) ![AppVersion: v0.16.2](https://img.shields.io/badge/AppVersion-v0.16.2-informational?style=flat-square) Celestia Node @@ -317,11 +317,11 @@ Celestia Node | node.extraVolumeMounts | list | `[]` | | | node.extraVolumes | list | `[]` | | | node.hostAliases | list | `[]` | | -| node.image | object | `{"digest":"","pullPolicy":"IfNotPresent","pullSecrets":[],"registry":"ghcr.io","repository":"celestiaorg/celestia-node","tag":"v0.16.1"}` | image parameters for the image | +| node.image | object | `{"digest":"","pullPolicy":"IfNotPresent","pullSecrets":[],"registry":"ghcr.io","repository":"celestiaorg/celestia-node","tag":"v0.16.2"}` | image parameters for the image | | node.image.pullPolicy | string | `"IfNotPresent"` | pull policy for the image, IfNotPresent by default | | node.image.registry | string | `"ghcr.io"` | registry for the image, GitHub Container Registry by default | | node.image.repository | string | `"celestiaorg/celestia-node"` | repository for the image, celestiaorg/celestia-node by default | -| node.image.tag | string | `"v0.16.1"` | tag for the image, v0.16.0 by default | +| node.image.tag | string | `"v0.16.2"` | tag for the image, v0.16.2 by default | | node.initContainers | list | `[]` | | | node.lifecycleHooks | object | `{}` | | | node.livenessProbe | object | `{"enabled":false,"failureThreshold":3,"initialDelaySeconds":0,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}` | liveness probe for the node | diff --git a/charts/celestia-node/values.yaml b/charts/celestia-node/values.yaml index 5b33c3e..a906991 100644 --- a/charts/celestia-node/values.yaml +++ b/charts/celestia-node/values.yaml @@ -89,8 +89,8 @@ node: registry: ghcr.io # -- repository for the image, celestiaorg/celestia-node by default repository: celestiaorg/celestia-node - # -- tag for the image, v0.16.0 by default - tag: v0.16.1 + # -- tag for the image, v0.16.2 by default + tag: v0.16.2 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' diff --git a/scripts/config/node/bridge/v0.16.2/config.toml b/scripts/config/node/bridge/v0.16.2/config.toml new file mode 100644 index 0000000..b16dad5 --- /dev/null +++ b/scripts/config/node/bridge/v0.16.2/config.toml @@ -0,0 +1,80 @@ +[Node] + StartupTimeout = "2m0s" + ShutdownTimeout = "2m0s" + +[Core] + IP = "" + RPCPort = "26657" + GRPCPort = "9090" + +[State] + DefaultKeyName = "my_celes_key" + DefaultBackendName = "test" + +[P2P] + ListenAddresses = ["/ip4/0.0.0.0/udp/2121/quic-v1/webtransport", "/ip6/::/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1", "/ip6/::/udp/2121/quic-v1", "/ip4/0.0.0.0/udp/2121/webrtc-direct", "/ip6/::/udp/2121/webrtc-direct", "/ip4/0.0.0.0/tcp/2121", "/ip6/::/tcp/2121"] + AnnounceAddresses = [] + NoAnnounceAddresses = ["/ip4/127.0.0.1/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1/webtransport", "/ip6/::/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1", "/ip4/127.0.0.1/udp/2121/quic-v1", "/ip6/::/udp/2121/quic-v1", "/ip4/0.0.0.0/udp/2121/webrtc-direct", "/ip4/127.0.0.1/udp/2121/webrtc-direct", "/ip6/::/udp/2121/webrtc-direct", "/ip4/0.0.0.0/tcp/2121", "/ip4/127.0.0.1/tcp/2121", "/ip6/::/tcp/2121"] + MutualPeers = [] + PeerExchange = true + RoutingTableRefreshPeriod = "1m0s" + [P2P.ConnManager] + Low = 800 + High = 1000 + GracePeriod = "1m0s" + +[RPC] + Address = "localhost" + Port = "26658" + SkipAuth = false + +[Gateway] + Address = "localhost" + Port = "26659" + Enabled = false + +[Share] + UseShareExchange = true + [Share.EDSStoreParams] + GCInterval = "0s" + RecentBlocksCacheSize = 10 + BlockstoreCacheSize = 128 + [Share.ShrExEDSParams] + ServerReadTimeout = "5s" + ServerWriteTimeout = "1m0s" + HandleRequestTimeout = "1m0s" + ConcurrencyLimit = 10 + BufferSize = 32768 + [Share.ShrExNDParams] + ServerReadTimeout = "5s" + ServerWriteTimeout = "1m0s" + HandleRequestTimeout = "1m0s" + ConcurrencyLimit = 10 + [Share.PeerManagerParams] + PoolValidationTimeout = "2m0s" + PeerCooldown = "3s" + GcInterval = "30s" + EnableBlackListing = false + [Share.Discovery] + PeersLimit = 5 + AdvertiseInterval = "1h0m0s" + +[Header] + TrustedHash = "" + TrustedPeers = [] + [Header.Store] + StoreCacheSize = 4096 + IndexCacheSize = 16384 + WriteBatchSize = 2048 + [Header.Syncer] + TrustingPeriod = "336h0m0s" + [Header.Server] + WriteDeadline = "8s" + ReadDeadline = "1m0s" + RangeRequestTimeout = "10s" + [Header.Client] + MaxHeadersPerRangeRequest = 64 + RangeRequestTimeout = "8s" + +[Pruner] + EnableService = false diff --git a/scripts/config/node/full/v0.16.2/config.toml b/scripts/config/node/full/v0.16.2/config.toml new file mode 100644 index 0000000..249c87e --- /dev/null +++ b/scripts/config/node/full/v0.16.2/config.toml @@ -0,0 +1,87 @@ +[Node] + StartupTimeout = "2m0s" + ShutdownTimeout = "2m0s" + +[Core] + IP = "" + RPCPort = "26657" + GRPCPort = "9090" + +[State] + DefaultKeyName = "my_celes_key" + DefaultBackendName = "test" + +[P2P] + ListenAddresses = ["/ip4/0.0.0.0/udp/2121/quic-v1/webtransport", "/ip6/::/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1", "/ip6/::/udp/2121/quic-v1", "/ip4/0.0.0.0/udp/2121/webrtc-direct", "/ip6/::/udp/2121/webrtc-direct", "/ip4/0.0.0.0/tcp/2121", "/ip6/::/tcp/2121"] + AnnounceAddresses = [] + NoAnnounceAddresses = ["/ip4/127.0.0.1/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1/webtransport", "/ip6/::/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1", "/ip4/127.0.0.1/udp/2121/quic-v1", "/ip6/::/udp/2121/quic-v1", "/ip4/0.0.0.0/udp/2121/webrtc-direct", "/ip4/127.0.0.1/udp/2121/webrtc-direct", "/ip6/::/udp/2121/webrtc-direct", "/ip4/0.0.0.0/tcp/2121", "/ip4/127.0.0.1/tcp/2121", "/ip6/::/tcp/2121"] + MutualPeers = [] + PeerExchange = true + RoutingTableRefreshPeriod = "1m0s" + [P2P.ConnManager] + Low = 800 + High = 1000 + GracePeriod = "1m0s" + +[RPC] + Address = "localhost" + Port = "26658" + SkipAuth = false + +[Gateway] + Address = "localhost" + Port = "26659" + Enabled = false + +[Share] + UseShareExchange = true + [Share.EDSStoreParams] + GCInterval = "0s" + RecentBlocksCacheSize = 10 + BlockstoreCacheSize = 128 + [Share.ShrExEDSParams] + ServerReadTimeout = "5s" + ServerWriteTimeout = "1m0s" + HandleRequestTimeout = "1m0s" + ConcurrencyLimit = 10 + BufferSize = 32768 + [Share.ShrExNDParams] + ServerReadTimeout = "5s" + ServerWriteTimeout = "1m0s" + HandleRequestTimeout = "1m0s" + ConcurrencyLimit = 10 + [Share.PeerManagerParams] + PoolValidationTimeout = "2m0s" + PeerCooldown = "3s" + GcInterval = "30s" + EnableBlackListing = false + [Share.Discovery] + PeersLimit = 5 + AdvertiseInterval = "1h0m0s" + +[Header] + TrustedHash = "" + TrustedPeers = [] + [Header.Store] + StoreCacheSize = 4096 + IndexCacheSize = 16384 + WriteBatchSize = 2048 + [Header.Syncer] + TrustingPeriod = "336h0m0s" + [Header.Server] + WriteDeadline = "8s" + ReadDeadline = "1m0s" + RangeRequestTimeout = "10s" + [Header.Client] + MaxHeadersPerRangeRequest = 64 + RangeRequestTimeout = "8s" + +[DASer] + SamplingRange = 100 + ConcurrencyLimit = 6 + BackgroundStoreInterval = "10m0s" + SampleFrom = 1 + SampleTimeout = "2m0s" + +[Pruner] + EnableService = false diff --git a/scripts/config/node/light/v0.16.2/config.toml b/scripts/config/node/light/v0.16.2/config.toml new file mode 100644 index 0000000..0a15b56 --- /dev/null +++ b/scripts/config/node/light/v0.16.2/config.toml @@ -0,0 +1,89 @@ +[Node] + StartupTimeout = "20s" + ShutdownTimeout = "20s" + +[Core] + IP = "" + RPCPort = "26657" + GRPCPort = "9090" + +[State] + DefaultKeyName = "my_celes_key" + DefaultBackendName = "test" + +[P2P] + ListenAddresses = ["/ip4/0.0.0.0/udp/2121/quic-v1/webtransport", "/ip6/::/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1", "/ip6/::/udp/2121/quic-v1", "/ip4/0.0.0.0/udp/2121/webrtc-direct", "/ip6/::/udp/2121/webrtc-direct", "/ip4/0.0.0.0/tcp/2121", "/ip6/::/tcp/2121"] + AnnounceAddresses = [] + NoAnnounceAddresses = ["/ip4/127.0.0.1/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1/webtransport", "/ip6/::/udp/2121/quic-v1/webtransport", "/ip4/0.0.0.0/udp/2121/quic-v1", "/ip4/127.0.0.1/udp/2121/quic-v1", "/ip6/::/udp/2121/quic-v1", "/ip4/0.0.0.0/udp/2121/webrtc-direct", "/ip4/127.0.0.1/udp/2121/webrtc-direct", "/ip6/::/udp/2121/webrtc-direct", "/ip4/0.0.0.0/tcp/2121", "/ip4/127.0.0.1/tcp/2121", "/ip6/::/tcp/2121"] + MutualPeers = [] + PeerExchange = false + RoutingTableRefreshPeriod = "1m0s" + [P2P.ConnManager] + Low = 50 + High = 100 + GracePeriod = "1m0s" + +[RPC] + Address = "localhost" + Port = "26658" + SkipAuth = false + +[Gateway] + Address = "localhost" + Port = "26659" + Enabled = false + +[Share] + UseShareExchange = true + [Share.EDSStoreParams] + GCInterval = "0s" + RecentBlocksCacheSize = 10 + BlockstoreCacheSize = 128 + [Share.ShrExEDSParams] + ServerReadTimeout = "5s" + ServerWriteTimeout = "1m0s" + HandleRequestTimeout = "1m0s" + ConcurrencyLimit = 10 + BufferSize = 32768 + [Share.ShrExNDParams] + ServerReadTimeout = "5s" + ServerWriteTimeout = "1m0s" + HandleRequestTimeout = "1m0s" + ConcurrencyLimit = 10 + [Share.PeerManagerParams] + PoolValidationTimeout = "2m0s" + PeerCooldown = "3s" + GcInterval = "30s" + EnableBlackListing = false + [Share.LightAvailability] + SampleAmount = 16 + [Share.Discovery] + PeersLimit = 5 + AdvertiseInterval = "1h0m0s" + +[Header] + TrustedHash = "" + TrustedPeers = [] + [Header.Store] + StoreCacheSize = 512 + IndexCacheSize = 2048 + WriteBatchSize = 512 + [Header.Syncer] + TrustingPeriod = "336h0m0s" + [Header.Server] + WriteDeadline = "8s" + ReadDeadline = "1m0s" + RangeRequestTimeout = "10s" + [Header.Client] + MaxHeadersPerRangeRequest = 64 + RangeRequestTimeout = "8s" + +[DASer] + SamplingRange = 100 + ConcurrencyLimit = 16 + BackgroundStoreInterval = "10m0s" + SampleFrom = 1 + SampleTimeout = "2m40s" + +[Pruner] + EnableService = false