feat(update): add lifecycle hooks to the update action

This commit is contained in:
Simon Aronsson 2019-07-26 18:50:47 +02:00
parent 874180a518
commit 73f21f7e0f
10 changed files with 481 additions and 72 deletions

View file

@ -7,9 +7,10 @@ import (
// UpdateParams contains all different options available to alter the behavior of the Update func
type UpdateParams struct {
Filter t.Filter
Cleanup bool
NoRestart bool
Timeout time.Duration
MonitorOnly bool
Filter t.Filter
Cleanup bool
NoRestart bool
Timeout time.Duration
MonitorOnly bool
LifecycleHooks bool
}