Ekaterina Lebedeva
6d3ecb6528
All checks were successful
DCO action / DCO (pull_request) Successful in 1m52s
Tests and linters / Tests (1.22) (pull_request) Successful in 2m9s
Tests and linters / Tests with -race (pull_request) Successful in 2m12s
Tests and linters / Tests (1.21) (pull_request) Successful in 2m56s
Tests and linters / Lint (pull_request) Successful in 3m16s
* Currently, objects created in preset are never deleted. k6 deletes only objects from registry, if registry file is not provided k6 delete load fails. * Added cli utility to import objects created in preset into registry so k6 can delete them normally. Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
33 lines
844 B
Go
33 lines
844 B
Go
package main
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"git.frostfs.info/TrueCloudLab/xk6-frostfs/cmd/xk6-registry/importer"
|
|
"git.frostfs.info/TrueCloudLab/xk6-frostfs/internal/version"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "xk6-registry",
|
|
Version: version.Version,
|
|
Short: "Command Line Tool to work with Registry",
|
|
Long: `Registry provides tools to work with object registry for xk6.
|
|
It contains command for importing objects in registry from preset`,
|
|
SilenceErrors: true,
|
|
SilenceUsage: true,
|
|
Run: rootCmdRun,
|
|
}
|
|
|
|
func init() {
|
|
cobra.AddTemplateFunc("runtimeVersion", runtime.Version)
|
|
rootCmd.SetVersionTemplate(`FrostFS xk6-registry
|
|
{{printf "Version: %s" .Version }}
|
|
GoVersion: {{ runtimeVersion }}
|
|
`)
|
|
rootCmd.AddCommand(importer.Cmd)
|
|
}
|
|
|
|
func rootCmdRun(cmd *cobra.Command, _ []string) {
|
|
_ = cmd.Usage()
|
|
}
|