mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-09 17:27:28 +00:00
- add delete kustomization command with confirmation and warning id not suspended - add suspend kustomization command - add resume kustomization command - add suspend/resume/delete e2e tests
14 lines
179 B
Go
14 lines
179 B
Go
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var resumeCmd = &cobra.Command{
|
|
Use: "resume",
|
|
Short: "Resume commands",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(resumeCmd)
|
|
}
|