Skip to content
Merged
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
4 changes: 4 additions & 0 deletions pkg/helm/nelm/nelm.go
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,8 @@ func (c *NelmClient) UpgradeRelease(releaseName, modulePath string, valuesPaths
DefaultChartAPIVersion: "v2",
Timeout: c.opts.Timeout,
InstallGraphPath: installGraphPath,
// Releases are serialized by the module task queue, so the cluster-wide release lock is redundant.
LegacyNoReleaseLock: true,
}); err != nil {
return fmt.Errorf("install nelm release %q: %w", releaseName, err)
}
Expand Down Expand Up @@ -524,6 +526,8 @@ func (c *NelmClient) DeleteRelease(releaseName string) error {
ReleaseStorageDriver: c.opts.HelmDriver,
Timeout: c.opts.Timeout,
UninstallGraphPath: installGraphPath,
// Releases are serialized by the module task queue, so the cluster-wide release lock is redundant.
LegacyNoReleaseLock: true,
}); err != nil {
return fmt.Errorf("nelm uninstall release %q: %w", releaseName, err)
}
Expand Down
Loading