mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
105 lines
2.9 KiB
Go
105 lines
2.9 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 guestdrivers
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"yunion.io/x/pkg/utils"
|
|
|
|
api "yunion.io/x/onecloud/pkg/apis/compute"
|
|
"yunion.io/x/onecloud/pkg/cloudprovider"
|
|
"yunion.io/x/onecloud/pkg/compute/models"
|
|
)
|
|
|
|
type SUCloudGuestDriver struct {
|
|
SManagedVirtualizedGuestDriver
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetHypervisor() string {
|
|
return api.HYPERVISOR_UCLOUD
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetProvider() string {
|
|
return api.CLOUD_PROVIDER_UCLOUD
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetQuotaPlatformID() []string {
|
|
return []string{
|
|
api.CLOUD_ENV_PUBLIC_CLOUD,
|
|
api.CLOUD_PROVIDER_UCLOUD,
|
|
}
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetDefaultSysDiskBackend() string {
|
|
return api.STORAGE_UCLOUD_CLOUD_SSD
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetDeployStatus() ([]string, error) {
|
|
return []string{api.VM_READY}, nil
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetMinimalSysDiskSizeGb() int {
|
|
return 10
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetGuestInitialStateAfterCreate() string {
|
|
return api.VM_RUNNING
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetDetachDiskStatus() ([]string, error) {
|
|
return []string{api.VM_READY, api.VM_RUNNING}, nil
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetAttachDiskStatus() ([]string, error) {
|
|
return []string{api.VM_READY, api.VM_RUNNING}, nil
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetChangeConfigStatus() ([]string, error) {
|
|
return []string{api.VM_READY}, nil
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetRebuildRootStatus() ([]string, error) {
|
|
return []string{api.VM_READY, api.VM_RUNNING}, nil
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetGuestInitialStateAfterRebuild() string {
|
|
return api.VM_RUNNING
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) ValidateResizeDisk(guest *models.SGuest, disk *models.SDisk, storage *models.SStorage) error {
|
|
if !utils.IsInStringArray(guest.Status, []string{api.VM_READY}) {
|
|
return fmt.Errorf("Cannot resize disk when guest in status %s", guest.Status)
|
|
}
|
|
if !utils.IsInStringArray(storage.StorageType, []string{api.STORAGE_UCLOUD_CLOUD_SSD, api.STORAGE_UCLOUD_CLOUD_NORMAL}) {
|
|
return fmt.Errorf("Cannot resize disk with unsupported volumes type %s", storage.StorageType)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (self *SUCloudGuestDriver) GetLinuxDefaultAccount(desc cloudprovider.SManagedVMCreateConfig) string {
|
|
if desc.OsType == "Windows" {
|
|
return "Administrator"
|
|
}
|
|
|
|
return "root"
|
|
}
|
|
|
|
func init() {
|
|
driver := SUCloudGuestDriver{}
|
|
models.RegisterGuestDriver(&driver)
|
|
}
|