| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // 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 (
- "yunion.io/x/cloudmux/pkg/cloudprovider"
- "yunion.io/x/pkg/util/rbacscope"
- api "yunion.io/x/onecloud/pkg/apis/compute"
- "yunion.io/x/onecloud/pkg/cloudcommon/db/quotas"
- "yunion.io/x/onecloud/pkg/compute/models"
- "yunion.io/x/onecloud/pkg/compute/options"
- "yunion.io/x/onecloud/pkg/mcclient"
- )
- type SRemoteFileGuestDriver struct {
- SManagedVirtualizedGuestDriver
- }
- func init() {
- driver := SRemoteFileGuestDriver{}
- models.RegisterGuestDriver(&driver)
- }
- func (self *SRemoteFileGuestDriver) GetHypervisor() string {
- return api.HYPERVISOR_REMOTEFILE
- }
- func (self *SRemoteFileGuestDriver) GetProvider() string {
- return api.CLOUD_PROVIDER_REMOTEFILE
- }
- func (self *SRemoteFileGuestDriver) GetInstanceCapability() cloudprovider.SInstanceCapability {
- return cloudprovider.SInstanceCapability{
- Hypervisor: self.GetHypervisor(),
- Provider: self.GetProvider(),
- DefaultAccount: cloudprovider.SDefaultAccount{
- Linux: cloudprovider.SOsDefaultAccount{
- DefaultAccount: api.VM_DEFAULT_LINUX_LOGIN_USER,
- Changeable: false,
- },
- Windows: cloudprovider.SOsDefaultAccount{
- DefaultAccount: api.VM_DEFAULT_WINDOWS_LOGIN_USER,
- Changeable: false,
- },
- },
- }
- }
- func (self *SRemoteFileGuestDriver) GetComputeQuotaKeys(scope rbacscope.TRbacScope, ownerId mcclient.IIdentityProvider, brand string) models.SComputeResourceKeys {
- keys := models.SComputeResourceKeys{}
- keys.SBaseProjectQuotaKeys = quotas.OwnerIdProjectQuotaKeys(scope, ownerId)
- keys.CloudEnv = api.CLOUD_ENV_PRIVATE_CLOUD
- keys.Provider = api.CLOUD_PROVIDER_REMOTEFILE
- keys.Brand = brand
- keys.Hypervisor = api.HYPERVISOR_REMOTEFILE
- return keys
- }
- func (self *SRemoteFileGuestDriver) GetDefaultSysDiskBackend() string {
- return api.STORAGE_LOCAL
- }
- func (self *SRemoteFileGuestDriver) GetMinimalSysDiskSizeGb() int {
- return options.Options.DefaultDiskSizeMB / 1024
- }
|