Files
cloudpods/cmd/climc/shell/servers.go
T
2019-02-25 15:20:27 +08:00

747 lines
24 KiB
Go

package shell
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"yunion.io/x/jsonutils"
"yunion.io/x/log"
"yunion.io/x/pkg/util/regutils"
"yunion.io/x/onecloud/pkg/mcclient"
"yunion.io/x/onecloud/pkg/mcclient/modules"
"yunion.io/x/onecloud/pkg/mcclient/options"
)
func init() {
R(&options.ServerListOptions{}, "server-list", "List virtual servers", func(s *mcclient.ClientSession, opts *options.ServerListOptions) error {
params, err := options.ListStructToParams(opts)
if err != nil {
return err
}
result, err := modules.Servers.List(s, params)
if err != nil {
return err
}
if len(opts.ExportFile) > 0 {
exportList(result, opts.ExportFile, opts.ExportKeys, opts.ExportTexts, modules.Servers.GetColumns(s))
} else {
printList(result, modules.Servers.GetColumns(s))
}
return nil
})
R(&options.ServerShowOptions{}, "server-show", "Show details of a server", func(s *mcclient.ClientSession, opts *options.ServerShowOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
result, err := modules.Servers.Get(s, opts.ID, params)
if err != nil {
return err
}
printObject(result)
return nil
})
R(&options.ServerIdOptions{}, "server-metadata", "Show metadata of a server", func(s *mcclient.ClientSession, opts *options.ServerIdOptions) error {
result, err := modules.Servers.GetMetadata(s, opts.ID, nil)
if err != nil {
return err
}
printObject(result)
return nil
})
R(&options.ServerCreateOptions{}, "server-create", "Create a server", func(s *mcclient.ClientSession, opts *options.ServerCreateOptions) error {
params, err := opts.Params()
if err != nil {
return err
}
if opts.GenerateName {
params.Add(jsonutils.NewString(opts.NAME), "generate_name")
} else {
params.Add(jsonutils.NewString(opts.NAME), "name")
}
if regutils.MatchSize(opts.MEMSPEC) {
params.Add(jsonutils.NewString(opts.MEMSPEC), "vmem_size")
} else {
params.Add(jsonutils.NewString(opts.MEMSPEC), "instance_type")
}
if opts.NoAccountInit != nil && *opts.NoAccountInit {
params.Add(jsonutils.JSONFalse, "reset_password")
}
if len(opts.UserDataFile) > 0 {
userdata, err := ioutil.ReadFile(opts.UserDataFile)
if err != nil {
return err
}
params.Add(jsonutils.NewString(string(userdata)), "user_data")
}
count := options.IntV(opts.Count)
if options.BoolV(opts.DryRun) {
results, err := modules.SchedManager.DoScheduleListResult(s, params, count)
if err != nil {
return err
}
printList(results, []string{"id", "name", "rank", "capacity", "error"})
} else {
taskNotify := options.BoolV(opts.TaskNotify)
if taskNotify {
s.PrepareTask()
}
if count > 1 {
results := modules.Servers.BatchCreate(s, params, count)
printBatchResults(results, modules.Servers.GetColumns(s))
} else {
server, err := modules.Servers.Create(s, params)
if err != nil {
return err
}
printObject(server)
}
if taskNotify {
s.WaitTaskNotify()
}
}
return nil
})
R(&options.ServerLoginInfoOptions{}, "server-logininfo", "Get login info of a server", func(s *mcclient.ClientSession, opts *options.ServerLoginInfoOptions) error {
srvid, e := modules.Servers.GetId(s, opts.ID, nil)
if e != nil {
return e
}
params := jsonutils.NewDict()
if len(opts.Key) > 0 {
privateKey, e := ioutil.ReadFile(opts.Key)
if e != nil {
return e
}
params.Add(jsonutils.NewString(string(privateKey)), "private_key")
}
i, e := modules.Servers.GetLoginInfo(s, srvid, params)
if e != nil {
return e
}
printObject(i)
return nil
})
R(&options.ServerIdsOptions{}, "server-start", "Start servers", func(s *mcclient.ClientSession, opts *options.ServerIdsOptions) error {
ret := modules.Servers.BatchPerformAction(s, opts.ID, "start", nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerIdsOptions{}, "server-syncstatus", "Sync servers status", func(s *mcclient.ClientSession, opts *options.ServerIdsOptions) error {
ret := modules.Servers.BatchPerformAction(s, opts.ID, "syncstatus", nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerIdsOptions{}, "server-sync", "Sync servers configurations", func(s *mcclient.ClientSession, opts *options.ServerIdsOptions) error {
ret := modules.Servers.BatchPerformAction(s, opts.ID, "sync", nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerSwitchToBackupOptions{}, "server-switch-to-backup", "Switch geust master to backup host", func(s *mcclient.ClientSession, opts *options.ServerSwitchToBackupOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret, err := modules.Servers.PerformAction(s, opts.ID, "switch-to-backup", params)
if err != nil {
return err
}
printObject(ret)
return nil
})
R(&options.ServerIdsOptions{}, "server-create-backup", "Create backup guest", func(s *mcclient.ClientSession, opts *options.ServerIdsOptions) error {
ret := modules.Servers.BatchPerformAction(s, opts.ID, "create-backup", nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerDeleteBackupOptions{}, "server-delete-backup", "Guest delete backup", func(s *mcclient.ClientSession, opts *options.ServerDeleteBackupOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret, err := modules.Servers.PerformAction(s, opts.ID, "delete-backup", params)
if err != nil {
return err
}
printObject(ret)
return nil
})
R(&options.ServerStopOptions{}, "server-stop", "Stop servers", func(s *mcclient.ClientSession, opts *options.ServerStopOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret := modules.Servers.BatchPerformAction(s, opts.ID, "stop", params)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerIdsOptions{}, "server-suspend", "Suspend servers", func(s *mcclient.ClientSession, opts *options.ServerIdsOptions) error {
ret := modules.Servers.BatchPerformAction(s, opts.ID, "suspend", nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerMigrateOptions{}, "server-migrate", "Migrate server", func(s *mcclient.ClientSession, opts *options.ServerMigrateOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret, err := modules.Servers.PerformAction(s, opts.ID, "migrate", params)
if err != nil {
return err
}
printObject(ret)
return nil
})
R(&options.ServerLiveMigrateOptions{}, "server-live-migrate", "Migrate server", func(s *mcclient.ClientSession, opts *options.ServerLiveMigrateOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret, err := modules.Servers.PerformAction(s, opts.ID, "live-migrate", params)
if err != nil {
return err
}
printObject(ret)
return nil
})
R(&options.ServerResetOptions{}, "server-reset", "Reset servers", func(s *mcclient.ClientSession, opts *options.ServerResetOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret := modules.Servers.BatchPerformAction(s, opts.ID, "reset", params)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerRestartOptions{}, "server-restart", "Restart servers", func(s *mcclient.ClientSession, opts *options.ServerRestartOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret := modules.Servers.BatchPerformAction(s, opts.ID, "restart", params)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerIdsOptions{}, "server-purge", "Purge obsolete servers", func(s *mcclient.ClientSession, opts *options.ServerIdsOptions) error {
ret := modules.Servers.BatchPerformAction(s, opts.ID, "purge", nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerDeleteOptions{}, "server-delete", "Delete servers", func(s *mcclient.ClientSession, opts *options.ServerDeleteOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret := modules.Servers.BatchDeleteWithParam(s, opts.ID, params, nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerIdsOptions{}, "server-cancel-delete", "Cancel pending delete servers", func(s *mcclient.ClientSession, opts *options.ServerIdsOptions) error {
ret := modules.Servers.BatchPerformAction(s, opts.ID, "cancel-delete", nil)
printBatchResults(ret, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerIdOptions{}, "server-vnc", "Show vnc info of server", func(s *mcclient.ClientSession, opts *options.ServerIdOptions) error {
ret, e := modules.Servers.GetSpecific(s, opts.ID, "vnc", nil)
if e != nil {
return e
}
printObject(ret)
return nil
})
R(&options.ServerIdOptions{}, "server-desc", "Show desc info of server", func(s *mcclient.ClientSession, opts *options.ServerIdOptions) error {
ret, e := modules.Servers.GetSpecific(s, opts.ID, "desc", nil)
if e != nil {
return e
}
printObject(ret)
return nil
})
R(&options.ServerIdOptions{}, "server-status", "Show status of server", func(s *mcclient.ClientSession, opts *options.ServerIdOptions) error {
ret, e := modules.Servers.GetSpecific(s, opts.ID, "status", nil)
if e != nil {
return e
}
printObject(ret)
return nil
})
R(&options.ServerUpdateOptions{}, "server-update", "Update servers", func(s *mcclient.ClientSession, opts *options.ServerUpdateOptions) error {
params, err := opts.Params()
if err != nil {
return err
}
if params.Size() == 0 {
return InvalidUpdateError()
}
result := modules.Servers.BatchPut(s, opts.ID, params)
printBatchResults(result, modules.Servers.GetColumns(s))
return nil
})
R(&options.ServerSendKeyOptions{}, "server-send-keys", "Send keys to server", func(s *mcclient.ClientSession, opts *options.ServerSendKeyOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "sendkeys", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
R(&options.ServerDeployOptions{}, "server-deploy", "Deploy hostname and keypair to a stopped virtual server", func(s *mcclient.ClientSession, opts *options.ServerDeployOptions) error {
params, err := opts.Params()
if err != nil {
return err
}
srv, e := modules.Servers.PerformAction(s, opts.ID, "deploy", params)
if e != nil {
return e
}
printObject(srv)
return nil
})
R(&options.ServerSecGroupsOptions{}, "server-set-secgroup", "Set security groups to a VM", func(s *mcclient.ClientSession, opts *options.ServerSecGroupsOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "set-secgroup", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
R(&options.ServerSecGroupsOptions{}, "server-add-secgroup", "Add security group to a VM", func(s *mcclient.ClientSession, opts *options.ServerSecGroupsOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "add-secgroup", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
R(&options.ServerSecGroupOptions{}, "server-assign-secgroup", "Assign security group to a VM", func(s *mcclient.ClientSession, opts *options.ServerSecGroupOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
srv, e := modules.Servers.PerformAction(s, opts.ID, "assign-secgroup", params)
if e != nil {
return e
}
printObject(srv)
return nil
})
R(&options.ServerSecGroupOptions{}, "server-assign-admin-secgroup", "Assign administrative security group to a VM", func(s *mcclient.ClientSession, opts *options.ServerSecGroupOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
srv, e := modules.Servers.PerformAction(s, opts.ID, "assign-admin-secgroup", params)
if e != nil {
return e
}
printObject(srv)
return nil
})
R(&options.ServerSecGroupsOptions{}, "server-revoke-secgroup", "Revoke security group from VM", func(s *mcclient.ClientSession, opts *options.ServerSecGroupsOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "revoke-secgroup", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
R(&options.ServerIdOptions{}, "server-revoke-admin-secgroup", "Assign administrative security group to a VM", func(s *mcclient.ClientSession, opts *options.ServerIdOptions) error {
srv, e := modules.Servers.PerformAction(s, opts.ID, "revoke-admin-secgroup", nil)
if e != nil {
return e
}
printObject(srv)
return nil
})
R(&options.ServerMonitorOptions{}, "server-monitor", "Send commands to qemu monitor", func(s *mcclient.ClientSession, opts *options.ServerMonitorOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
ret, err := modules.Servers.PerformAction(s, opts.ID, "monitor", params)
if err != nil {
return err
}
result, err := ret.GetString("results")
if err != nil {
return err
}
fmt.Println(result)
return nil
})
R(&options.ServerSaveImageOptions{}, "server-save-image", "Save root disk to new image and upload to glance.", func(s *mcclient.ClientSession, opts *options.ServerSaveImageOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "save-image", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
type ServerChangeOwnerOptions struct {
ID string `help:"Server to change owner"`
PROJECT string `help:"Project ID or change"`
RawId bool `help:"User raw ID, instead of name"`
}
R(&ServerChangeOwnerOptions{}, "server-change-owner", "Change owner porject of a server", func(s *mcclient.ClientSession, opts *ServerChangeOwnerOptions) error {
params := jsonutils.NewDict()
if opts.RawId {
projid, err := modules.Projects.GetId(s, opts.PROJECT, nil)
if err != nil {
return err
}
params.Add(jsonutils.NewString(projid), "tenant")
params.Add(jsonutils.JSONTrue, "raw_id")
} else {
params.Add(jsonutils.NewString(opts.PROJECT), "tenant")
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "change-owner", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
R(&options.ServerRebuildRootOptions{}, "server-rebuild-root", "Rebuild VM root image with new template", func(s *mcclient.ClientSession, opts *options.ServerRebuildRootOptions) error {
params, err := options.StructToParams(opts)
if err != nil {
return err
}
if opts.NoAccountInit != nil && *opts.NoAccountInit {
params.Add(jsonutils.JSONFalse, "reset_password")
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "rebuild-root", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
R(&options.ServerChangeConfigOptions{}, "server-change-config", "Change configuration of VM", func(s *mcclient.ClientSession, opts *options.ServerChangeConfigOptions) error {
params, err := options.StructToParams(opts)
if len(opts.Disk) > 0 {
params.Remove("disk.0")
for i, d := range opts.Disk {
params.Set(fmt.Sprintf("disk.%d", i+1), jsonutils.NewString(d))
}
}
if err != nil {
return err
}
if params.Size() == 0 {
return InvalidUpdateError()
}
srv, err := modules.Servers.PerformAction(s, opts.ID, "change-config", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
type ServerDiskSnapshotOptions struct {
SERVER string `help:"server ID or Name"`
DISK string `help:"create snapshot disk id"`
SNAPSHOTNAME string `help:"Snapshot name"`
}
R(&ServerDiskSnapshotOptions{}, "server-disk-create-snapshot", "Task server disk snapshot", func(s *mcclient.ClientSession, args *ServerDiskSnapshotOptions) error {
params := jsonutils.NewDict()
params.Set("disk_id", jsonutils.NewString(args.DISK))
params.Set("name", jsonutils.NewString(args.SNAPSHOTNAME))
srv, err := modules.Servers.PerformAction(s, args.SERVER, "disk-snapshot", params)
if err != nil {
return err
}
printObject(srv)
return nil
})
type ServerInsertISOOptions struct {
ID string `help:"server ID or Name"`
ISO string `help:"Glance image ID of the ISO"`
}
R(&ServerInsertISOOptions{}, "server-insert-iso", "Insert an ISO image into server's cdrom", func(s *mcclient.ClientSession, opts *ServerInsertISOOptions) error {
img, err := modules.Images.Get(s, opts.ISO, nil)
if err != nil {
return err
}
imgId, err := img.GetString("id")
if err != nil {
return err
}
params := jsonutils.NewDict()
params.Add(jsonutils.NewString(imgId), "image_id")
result, err := modules.Servers.PerformAction(s, opts.ID, "insertiso", params)
if err != nil {
return err
}
printObject(result)
return nil
})
R(&options.ServerIdOptions{}, "server-eject-iso", "Eject iso from servers' cdrom", func(s *mcclient.ClientSession, opts *options.ServerIdOptions) error {
result, err := modules.Servers.PerformAction(s, opts.ID, "ejectiso", nil)
if err != nil {
return err
}
printObject(result)
return nil
})
R(&options.ServerIdOptions{}, "server-iso", "Show server's mounting ISO information", func(s *mcclient.ClientSession, opts *options.ServerIdOptions) error {
results, err := modules.Servers.GetSpecific(s, opts.ID, "iso", nil)
if err != nil {
return err
}
printObject(results)
return nil
})
type ServerAssociateEipOptions struct {
ID string `help:"ID or name of server"`
EIP string `help:"ID or name of EIP to associate"`
}
R(&ServerAssociateEipOptions{}, "server-associate-eip", "Associate a server and an eip", func(s *mcclient.ClientSession, args *ServerAssociateEipOptions) error {
params := jsonutils.NewDict()
params.Add(jsonutils.NewString(args.EIP), "eip")
results, err := modules.Servers.PerformAction(s, args.ID, "associate-eip", params)
if err != nil {
return err
}
printObject(results)
return nil
})
type ServerDissociateEipOptions struct {
ID string `help:"ID or name of server" json:"-"`
AutoDelete bool `help:"automatically delete the dissociate EIP" json:"auto_delete,omitfalse"`
}
R(&ServerDissociateEipOptions{}, "server-dissociate-eip", "Dissociate an eip from a server", func(s *mcclient.ClientSession, args *ServerDissociateEipOptions) error {
params, err := options.StructToParams(args)
if err != nil {
return err
}
result, err := modules.Servers.PerformAction(s, args.ID, "dissociate-eip", params)
if err != nil {
return nil
}
printObject(result)
return nil
})
type ServerUserDataOptions struct {
ID string `help:"ID or name of server"`
FILE string `help:"Path to user data file"`
}
R(&ServerUserDataOptions{}, "server-set-user-data", "Update server user_data", func(s *mcclient.ClientSession, args *ServerUserDataOptions) error {
params := jsonutils.NewDict()
content, err := ioutil.ReadFile(args.FILE)
if err != nil {
return err
}
params.Add(jsonutils.NewString(string(content)), "user_data")
result, err := modules.Servers.PerformAction(s, args.ID, "user-data", params)
if err != nil {
return err
}
printObject(result)
return nil
})
type ServerAddExtraOption struct {
ID string `help:"ID or name of server"`
KEY string `help:"Option key"`
VALUE string `help:"Option value"`
}
R(&ServerAddExtraOption{}, "server-add-extra-options", "Add server extra options", func(s *mcclient.ClientSession, args *ServerAddExtraOption) error {
params := jsonutils.NewDict()
params.Add(jsonutils.NewString(args.KEY), "key")
params.Add(jsonutils.NewString(args.VALUE), "value")
result, err := modules.Servers.PerformAction(s, args.ID, "set-extra-option", params)
if err != nil {
return err
}
printObject(result)
return nil
})
type ServerRemoveExtraOption struct {
ID string `help:"ID or name of server"`
KEY string `help:"Option key"`
}
R(&ServerRemoveExtraOption{}, "server-remove-extra-options", "Remove server extra options", func(s *mcclient.ClientSession, args *ServerRemoveExtraOption) error {
params := jsonutils.NewDict()
params.Add(jsonutils.NewString(args.KEY), "key")
result, err := modules.Servers.PerformAction(s, args.ID, "del-extra-option", params)
if err != nil {
return err
}
printObject(result)
return nil
})
type ServerRenewOptions struct {
ID string `help:"ID or name of server to renew"`
DURATION string `help:"Duration of renew, ADMIN only command"`
}
R(&ServerRenewOptions{}, "server-renew", "Renew a server", func(s *mcclient.ClientSession, args *ServerRenewOptions) error {
params := jsonutils.NewDict()
params.Add(jsonutils.NewString(args.DURATION), "duration")
result, err := modules.Servers.PerformAction(s, args.ID, "renew", params)
if err != nil {
return err
}
printObject(result)
return nil
})
type ServerPrepaidRecycleOptions struct {
ID string `help:"ID or name of server to recycle"`
AutoDelete bool `help:"after joining the pool, remove the server automatically"`
}
R(&ServerPrepaidRecycleOptions{}, "server-enable-recycle", "Put a prepaid server into recycle pool, so that it can be shared", func(s *mcclient.ClientSession, args *ServerPrepaidRecycleOptions) error {
params := jsonutils.NewDict()
if args.AutoDelete {
params.Add(jsonutils.JSONTrue, "auto_delete")
}
result, err := modules.Servers.PerformAction(s, args.ID, "prepaid-recycle", params)
if err != nil {
return err
}
printObject(result)
return nil
})
R(&ServerPrepaidRecycleOptions{}, "server-disable-recycle", "Pull a prepaid server from recycle pool, so that it will not be shared anymore", func(s *mcclient.ClientSession, args *ServerPrepaidRecycleOptions) error {
params := jsonutils.NewDict()
result, err := modules.Servers.PerformAction(s, args.ID, "undo-prepaid-recycle", params)
if err != nil {
return err
}
printObject(result)
return nil
})
type ServerImportOptions struct {
LOCATION string `help:"Server desc file location, should be desc file or workspace directory"`
HOST string `help:"Host id or name for this server"`
}
R(&ServerImportOptions{}, "server-import", "Import a server by desc file", func(s *mcclient.ClientSession, args *ServerImportOptions) error {
var descFiles []string
err := filepath.Walk(args.LOCATION, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() {
return nil
}
if info.Name() == "desc" {
descFiles = append(descFiles, path)
}
return nil
})
if err != nil {
return fmt.Errorf("Find desc files: %v", err)
}
importF := func(desc string) error {
ret, err := ioutil.ReadFile(desc)
if err != nil {
return fmt.Errorf("Read file %s: %v", desc, err)
}
jsonObj, err := jsonutils.Parse(ret)
if err != nil {
return fmt.Errorf("Parse %s to json: %v", string(ret), err)
}
params := jsonObj.(*jsonutils.JSONDict)
disks, err := params.GetArray("disks")
if err != nil || len(disks) == 0 {
return fmt.Errorf("Desc %s not have disks, skip it", desc)
}
params.Add(jsonutils.NewString(args.HOST), "host_id")
// project may not exists
params.Remove("tenant")
params.Remove("tenant_id")
_, err = modules.Servers.PerformClassAction(s, "import", params)
if err != nil {
return err
}
//printObject(result)
return nil
}
for _, descFile := range descFiles {
if err := importF(descFile); err != nil {
log.Errorf("Import %s error: %v", descFile, err)
}
}
return nil
})
}