mirror of
https://github.com/fluxcd/flux2.git
synced 2026-05-06 01:54:43 +00:00
Adds suspend and resume all cmd
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
This commit is contained in:
parent
68074d3543
commit
12a2100fcf
48 changed files with 210 additions and 29 deletions
|
|
@ -35,6 +35,7 @@ finish the apply.`,
|
|||
RunE: resumeCommand{
|
||||
apiType: kustomizationType,
|
||||
object: kustomizationAdapter{&kustomizev1.Kustomization{}},
|
||||
list: kustomizationListAdapter{&kustomizev1.KustomizationList{}},
|
||||
}.run,
|
||||
}
|
||||
|
||||
|
|
@ -53,3 +54,7 @@ func (obj kustomizationAdapter) setUnsuspended() {
|
|||
func (obj kustomizationAdapter) successMessage() string {
|
||||
return fmt.Sprintf("applied revision %s", obj.Status.LastAppliedRevision)
|
||||
}
|
||||
|
||||
func (a kustomizationListAdapter) resumeItem(i int) resumable {
|
||||
return &kustomizationAdapter{&a.KustomizationList.Items[i]}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue