Skip to content

Commit

Permalink
Allow marking releases stuck in a pending state as failed (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
misberner authored and ludydoo committed Jun 29, 2023
1 parent 5d4fc78 commit 2b91396
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pkg/client/actionclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ func (c *actionClient) rollback(name string, opts ...RollbackOption) error {
return rollback.Run(name)
}


func (c *actionClient) Uninstall(name string, opts ...UninstallOption) (*release.UninstallReleaseResponse, error) {
return c.uninstall(name, concat(c.defaultUninstallOpts, opts...)...)
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/reconciler/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ type Reconciler struct {
extraWatches []watchDescription
maxConcurrentReconciles int
reconcilePeriod time.Duration
markFailedAfter time.Duration
markFailedAfter time.Duration
maxHistory int
skipPrimaryGVKSchemeRegistration bool

Expand Down

0 comments on commit 2b91396

Please sign in to comment.