Skip to content

Commit 72cccce

Browse files
authored
fix(v2): disable atomic rollback on helm install addon (#1818)
* fix(v2): disable atomic rollback on helm install addon * Trigger Build * f
1 parent c2dbce1 commit 72cccce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/helm/client.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,8 @@ func (h *HelmClient) Install(ctx context.Context, opts InstallOptions) (*release
323323
client.CreateNamespace = true
324324
client.WaitForJobs = true
325325
client.Wait = true
326-
client.Atomic = true
326+
// we don't set client.Atomic = true on install as it makes installation failures difficult to
327+
// debug since it will rollback the release.
327328

328329
if opts.Timeout != 0 {
329330
client.Timeout = opts.Timeout

0 commit comments

Comments
 (0)