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
2 changes: 1 addition & 1 deletion rust/helm-sys/go-helm-wrapper/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func main() {
func go_install_helm_release(releaseName *C.char, chartName *C.char, chartVersion *C.char, valuesYaml *C.char, namespace *C.char, suppressOutput bool) *C.char {
helmClient := getHelmClient(namespace, suppressOutput)

timeout, _ := time.ParseDuration("10m")
timeout, _ := time.ParseDuration("20m")
Comment thread
NickLarsenNZ marked this conversation as resolved.
chartSpec := gohelm.ChartSpec{
ReleaseName: C.GoString(releaseName),
ChartName: C.GoString(chartName),
Expand Down
6 changes: 6 additions & 0 deletions rust/stackablectl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- helm-sys: Double the helm timeout to 20m ([#306])

[#306]: https://github.com/stackabletech/stackable-cockpit/pull/306

## [24.3.6] - 2024-06-24

### Fixed
Expand Down