mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-08 06:31:00 +08:00
85 lines
2.3 KiB
Go
85 lines
2.3 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 tasks
|
|
|
|
import (
|
|
"net"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
|
|
"yunion.io/x/onecloud/pkg/baremetal/pxe"
|
|
baremetaltypes "yunion.io/x/onecloud/pkg/baremetal/types"
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/types"
|
|
"yunion.io/x/onecloud/pkg/mcclient"
|
|
"yunion.io/x/onecloud/pkg/util/ssh"
|
|
)
|
|
|
|
type IBaremetal interface {
|
|
Keyword() string
|
|
|
|
GetId() string
|
|
GetZoneId() string
|
|
GetStorageCacheId() string
|
|
GetTaskQueue() *TaskQueue
|
|
GetSSHConfig() (*types.SSHConfig, error)
|
|
TestSSHConfig() bool
|
|
GetAdminNic() *types.SNic
|
|
GetName() string
|
|
GetClientSession() *mcclient.ClientSession
|
|
SaveDesc(desc jsonutils.JSONObject) error
|
|
GetNics() []types.SNic
|
|
GetNicByMac(net.HardwareAddr) *types.SNic
|
|
GetRawIPMIConfig() *types.SIPMIInfo
|
|
GetIPMINic(mac net.HardwareAddr) *types.SNic
|
|
SetExistingIPMIIPAddr(ipAddr string)
|
|
GetServer() baremetaltypes.IBaremetalServer
|
|
|
|
SyncStatus(status, reason string)
|
|
AutoSyncStatus()
|
|
SyncAllStatus(status string)
|
|
AutoSyncAllStatus()
|
|
|
|
GetPowerStatus() (string, error)
|
|
DoPowerShutdown(soft bool) error
|
|
DoPXEBoot() error
|
|
// DoDiskBoot() error
|
|
|
|
DoRedfishPowerOn() error
|
|
GetAccessIp() string
|
|
EnablePxeBoot() bool
|
|
GenerateBootISO() error
|
|
SendNicInfo(nic *types.SNicDevInfo, idx int, nicType string, reset bool, ipAddr string, reserve bool) error
|
|
DoNTPConfig() error
|
|
GetImageCacheUrl() string
|
|
|
|
RemoveServer()
|
|
InitializeServer(session *mcclient.ClientSession, name string) error
|
|
SaveSSHConfig(remoteAddr string, key string) error
|
|
ServerLoadDesc() error
|
|
GetDHCPServerIP() (net.IP, error)
|
|
|
|
HasBMC() bool
|
|
SSHReachable() (bool, error)
|
|
SSHReboot() error
|
|
SSHShutdown() error
|
|
AdjustUEFICurrentBootOrder(cli *ssh.Client) error
|
|
}
|
|
|
|
type IBmManager interface {
|
|
GetZoneId() string
|
|
AddBaremetal(jsonutils.JSONObject) (pxe.IBaremetalInstance, error)
|
|
GetClientSession() *mcclient.ClientSession
|
|
}
|