Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions helm/ton-rust-node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to the Helm chart will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/).
Versions follow the Helm chart release tags (e.g. `helm/v0.3.0`).

## [0.4.3] - 2026-04-01

appVersion: `v0.3.0`

### Added

- `terminationGracePeriodSeconds` — configurable grace period before SIGKILL on pod termination. Defaults to 300s (5 minutes). The Kubernetes default of 30s is too short for a TON node — an unclean kill may corrupt the database and forces a cold boot

## [0.4.2] - 2026-03-18

appVersion: `v0.3.0`
Expand Down
2 changes: 1 addition & 1 deletion helm/ton-rust-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: node
description: TON Rust Node deployment
type: application
version: 0.4.2
version: 0.4.3
appVersion: "v0.3.0"

sources:
Expand Down
1 change: 1 addition & 0 deletions helm/ton-rust-node/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
{{- if .Values.hostNetwork }}
hostNetwork: true
dnsPolicy: ClusterFirstWithHostDNS
Expand Down
4 changes: 4 additions & 0 deletions helm/ton-rust-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,10 @@ serviceAccount:
name: ""
annotations: {}

## @param terminationGracePeriodSeconds Time (in seconds) given to the node process to shut down gracefully before SIGKILL. The default Kubernetes value (30s) is too short for a TON node — an unclean kill may corrupt the database and forces a cold boot. Set this to at least 300s.
##
terminationGracePeriodSeconds: 300

## @section Scheduling parameters

## @param nodeSelector [object] Node selector for pod scheduling
Expand Down
Loading