Skip to content

Commit c55f692

Browse files
authored
fix(helm-sys): Double the helm timeout after reported timeout errors (#306)
* fix(helm-sys): double the helm timeout after reported timeout errors * fix(helm-sys): double the helm timeout after reported timeout errors
1 parent 628c19b commit c55f692

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

rust/helm-sys/go-helm-wrapper/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func main() {
3939
func go_install_helm_release(releaseName *C.char, chartName *C.char, chartVersion *C.char, valuesYaml *C.char, namespace *C.char, suppressOutput bool) *C.char {
4040
helmClient := getHelmClient(namespace, suppressOutput)
4141

42-
timeout, _ := time.ParseDuration("10m")
42+
timeout, _ := time.ParseDuration("20m")
4343
chartSpec := gohelm.ChartSpec{
4444
ReleaseName: C.GoString(releaseName),
4545
ChartName: C.GoString(chartName),

rust/stackablectl/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Fixed
8+
9+
- helm-sys: Double the helm timeout to 20m ([#306])
10+
11+
[#306]: https://github.com/stackabletech/stackable-cockpit/pull/306
12+
713
## [24.3.6] - 2024-06-24
814

915
### Fixed

0 commit comments

Comments
 (0)