Documentation ¶
Index ¶
- Variables
- func DriverStatuses() map[instancetype.Type]*DriverStatus
- func GetClusterCPUFlags(ctx context.Context, s *state.State, servers []string, archName string) ([]string, error)
- func ParseMemoryStr(memory string) (valueInt int64, err error)
- func PrepareEqualTest(insts ...instance.Instance)
- type DriverStatus
Constants ¶
This section is empty.
Variables ¶
var ErrExecCommandNotExecutable = api.StatusErrorf(http.StatusBadRequest, "Command not executable")
ErrExecCommandNotExecutable indicates the command is not executable.
var ErrExecCommandNotFound = api.StatusErrorf(http.StatusBadRequest, "Command not found")
ErrExecCommandNotFound indicates the command is not found.
var ErrExecDisconnected = fmt.Errorf("Disconnected")
ErrExecDisconnected is returned when the guest disconnects the exec session.
var ErrInstanceIsStopped error = api.StatusErrorf(http.StatusBadRequest, "The instance is already stopped")
ErrInstanceIsStopped indicates that the instance is stopped.
Functions ¶
func DriverStatuses ¶
func DriverStatuses() map[instancetype.Type]*DriverStatus
DriverStatuses returns a map of DriverStatus structs for all instance type drivers. The first time this function is called each of the instance drivers will be probed for support and the result will be cached internally to make subsequent calls faster.
func GetClusterCPUFlags ¶ added in v6.0.2
func GetClusterCPUFlags(ctx context.Context, s *state.State, servers []string, archName string) ([]string, error)
GetClusterCPUFlags returns the list of shared CPU flags across.
func ParseMemoryStr ¶ added in v6.6.0
ParseMemoryStr parses a human representation of memory value as int64 type.
func PrepareEqualTest ¶
PrepareEqualTest modifies any unexported variables required for reflect.DeepEqual to complete safely. This is used for tests to avoid infinite recursion loops.