You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/rancher/k3s/pkg/cli/cmds"
|
|
|
|
"github.com/rancher/k3s/pkg/cli/etcdsnapshot"
|
|
|
|
"github.com/rancher/k3s/pkg/configfilearg"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := cmds.NewApp()
|
|
|
|
app.Commands = []cli.Command{
|
|
|
|
cmds.NewEtcdSnapshotCommand(etcdsnapshot.Run,
|
|
|
|
cmds.NewEtcdSnapshotSubcommands(
|
|
|
|
etcdsnapshot.Delete,
|
|
|
|
etcdsnapshot.List,
|
|
|
|
etcdsnapshot.Prune,
|
|
|
|
etcdsnapshot.Run),
|
|
|
|
),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := app.Run(configfilearg.MustParse(os.Args)); err != nil && !errors.Is(err, context.Canceled) {
|
|
|
|
logrus.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|