mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
1.通过cronman 调用eipUnused相关的driver,查询未使用的eip 2.依据对步骤1中的中的数据,对资源列表就行create、update、delete进行三种类型的操作 deal with comments gencopyright climc for SuggestSysRule and SuggestSysAlert monitor: fix sysrule related models not generated eip未使用的监控参数结构调整
115 lines
3.8 KiB
Go
115 lines
3.8 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package guestman
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
"yunion.io/x/log"
|
|
"yunion.io/x/pkg/errors"
|
|
|
|
deployapi "yunion.io/x/onecloud/pkg/hostman/hostdeployer/apis"
|
|
"yunion.io/x/onecloud/pkg/hostman/hostdeployer/deployclient"
|
|
hostutils "yunion.io/x/onecloud/pkg/hostman/hostutils"
|
|
"yunion.io/x/onecloud/pkg/hostman/storageman"
|
|
"yunion.io/x/onecloud/pkg/multicloud/esxi"
|
|
)
|
|
|
|
func (m *SGuestManager) GuestCreateFromEsxi(
|
|
ctx context.Context, params interface{},
|
|
) (jsonutils.JSONObject, error) {
|
|
createConfig, ok := params.(*SGuestCreateFromEsxi)
|
|
if !ok {
|
|
return nil, hostutils.ParamsError
|
|
}
|
|
guest, _ := m.GetServer(createConfig.Sid)
|
|
if err := guest.SaveDesc(createConfig.GuestDesc); err != nil {
|
|
return nil, err
|
|
}
|
|
esxiCli, err := esxi.NewESXiClientFromAccessInfo(ctx, &createConfig.EsxiAccessInfo.Datastore)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "new esxi client")
|
|
}
|
|
host, err := esxiCli.FindHostByIp(createConfig.EsxiAccessInfo.HostIp)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "esxi client find host by ip")
|
|
}
|
|
ivm, err := host.GetIVMById(createConfig.EsxiAccessInfo.GuestExtId)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "get ivm by id")
|
|
}
|
|
vm := ivm.(*esxi.SVirtualMachine)
|
|
disks, err := vm.GetIDisks()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "vm get idisk")
|
|
}
|
|
if len(disks) == 0 {
|
|
return nil, fmt.Errorf("no such disks for vm %s", vm.GetId())
|
|
}
|
|
vmref := vm.GetMoid()
|
|
var esxiDisks = new(deployapi.ConnectEsxiDisksParams)
|
|
esxiDisks.VddkInfo = &deployapi.VDDKConInfo{
|
|
Host: createConfig.EsxiAccessInfo.Datastore.Host,
|
|
Port: int32(createConfig.EsxiAccessInfo.Datastore.Port),
|
|
User: createConfig.EsxiAccessInfo.Datastore.Account,
|
|
Passwd: createConfig.EsxiAccessInfo.Datastore.Password,
|
|
Vmref: vmref,
|
|
}
|
|
esxiDisks.AccessInfo = make([]*deployapi.EsxiDiskInfo, len(disks))
|
|
for i := 0; i < len(disks); i++ {
|
|
esxiDisks.AccessInfo[i] = &deployapi.EsxiDiskInfo{
|
|
DiskPath: disks[i].(*esxi.SVirtualDisk).GetFilename(),
|
|
}
|
|
}
|
|
connections, err := deployclient.GetDeployClient().ConnectEsxiDisks(ctx, esxiDisks)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "connect esxi disks")
|
|
}
|
|
log.Infof("Connection disks %v", connections.String())
|
|
|
|
var ret = jsonutils.NewDict()
|
|
disksDesc, _ := guest.Desc.GetArray("disks")
|
|
for i := 0; i < len(disksDesc); i++ {
|
|
storageId, _ := disksDesc[i].GetString("storage_id")
|
|
if storage := storageman.GetManager().GetStorage(storageId); storage == nil {
|
|
err = errors.Wrapf(err, "get storage %s", storageId)
|
|
break
|
|
} else {
|
|
var diskInfo jsonutils.JSONObject
|
|
diskId, _ := disksDesc[i].GetString("disk_id")
|
|
iDisk := storage.CreateDisk(diskId)
|
|
diskInfo, err = iDisk.CreateRaw(ctx, 0, "qcow2", "", false, "", connections.Disks[i].DiskPath)
|
|
if err != nil {
|
|
err = errors.Wrapf(err, "create disk %s failed", diskId)
|
|
log.Errorf(err.Error())
|
|
break
|
|
}
|
|
diskInfo.(*jsonutils.JSONDict).Set("esxi_flat_filepath",
|
|
jsonutils.NewString(connections.Disks[i].DiskPath))
|
|
ret.Set(diskId, diskInfo)
|
|
}
|
|
}
|
|
if err != nil {
|
|
_, e := deployclient.GetDeployClient().DisconnectEsxiDisks(ctx, connections)
|
|
if e != nil {
|
|
log.Errorf("disconnect esxi disks failed %s", e)
|
|
}
|
|
return nil, err
|
|
}
|
|
return ret, nil
|
|
}
|