mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 21:39:06 +00:00
16 lines
288 B
Go
16 lines
288 B
Go
package cmds
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func NewKubectlCommand(action func(*cli.Context) error) cli.Command {
|
|
return cli.Command{
|
|
Name: "kubectl",
|
|
Usage: "Run kubectl",
|
|
SkipFlagParsing: true,
|
|
SkipArgReorder: true,
|
|
Action: action,
|
|
}
|
|
}
|