-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: sjcsjc123 <1401189096@qq.com>
- Loading branch information
Showing
5 changed files
with
139 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"github.com/sealerio/sealer/utils/weed" | ||
"github.com/sealerio/sealer/version" | ||
"github.com/sirupsen/logrus" | ||
"github.com/spf13/cobra" | ||
"os" | ||
) | ||
|
||
func main() { | ||
rootCmd := cobra.Command{ | ||
Use: "weed", | ||
Short: "A tool to build, share and run any distributed applications.", | ||
} | ||
rootCmd.AddCommand(startCmd()) | ||
rootCmd.AddCommand(writeCmd()) | ||
rootCmd.AddCommand(downloadFileCmd()) | ||
if err := rootCmd.Execute(); err != nil { | ||
logrus.Errorf("sealer-%s: %v", version.GetSingleVersion(), err) | ||
os.Exit(1) | ||
} | ||
|
||
} | ||
|
||
var config = &weed.Config{} | ||
|
||
func startCmd() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "start", | ||
Short: "start to run a weed cluster", | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
deployer := weed.NewDeployer(config) | ||
err := deployer.CreateEtcdCluster(context.Background()) | ||
if err != nil { | ||
return err | ||
} | ||
err = deployer.CreateWeedCluster(context.Background()) | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
}, | ||
} | ||
cmd.Flags().StringSliceVar(&config.MasterIP, "master-ip", []string{}, "master ip list") | ||
cmd.Flags().StringSliceVar(&config.VolumeIP, "volume-ip", []string{}, "volume ip list") | ||
cmd.Flags().StringVar(&config.LogDir, "log-dir", "", "log dir") | ||
cmd.Flags().StringVar(&config.DataDir, "data-dir", "", "data dir") | ||
cmd.Flags().StringVar(&config.PidDir, "pid-dir", "", "pid dir") | ||
cmd.Flags().StringVar(&config.BinDir, "bin-dir", "", "bin dir") | ||
cmd.Flags().StringVar(&config.EtcdConfigPath, "etcd-config-path", "", "etcd config path") | ||
cmd.Flags().StringVar(&config.CurrentIP, "current-ip", "", "current ip") | ||
cmd.Flags().IntVar(&config.PeerPort, "peer-port", 0, "peer port") | ||
cmd.Flags().IntVar(&config.ClientPort, "client-port", 0, "client port") | ||
cmd.Flags().IntVar(&config.WeedMasterPort, "weed-master-port", 0, "weed master port") | ||
cmd.Flags().IntVar(&config.WeedVolumePort, "weed-volume-port", 0, "weed volume port") | ||
cmd.Flags().BoolVar(&config.NeedMoreLocalNode, "need-more-local-node", false, "need more local node") | ||
cmd.Flags().StringVar(&config.WeedMasterDir, "weed-master-dir", "", "weed master dir") | ||
cmd.Flags().StringVar(&config.WeedVolumeDir, "weed-volume-dir", "", "weed volume dir") | ||
cmd.Flags().StringVar(&config.DefaultReplication, "default-replication", "", "default replication") | ||
cmd.Flags().StringVar(&config.WeedLogDir, "weed-log-dir", "", "weed log dir") | ||
return cmd | ||
} | ||
|
||
var dir string | ||
|
||
func writeCmd() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "write", | ||
Short: "write data to weed cluster", | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
deployer := weed.NewDeployer(config) | ||
err := deployer.UploadFile(context.Background(), dir) | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
}, | ||
} | ||
cmd.Flags().StringVar(&dir, "dir", "", "dir") | ||
return cmd | ||
} | ||
|
||
var out string | ||
|
||
func downloadFileCmd() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "download", | ||
Short: "download data from weed cluster", | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
deployer := weed.NewDeployer(config) | ||
err := deployer.DownloadFile(context.Background(), dir, out) | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
}, | ||
} | ||
cmd.Flags().StringVar(&dir, "dir", "", "dir") | ||
cmd.Flags().StringVar(&out, "out", "", "out") | ||
return cmd | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters