Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Data ¶
Data holds checkpoint data and its checksum
func (*Data) GetData ¶
func (cp *Data) GetData() ([]PodDevicesEntry, map[string][]string)
GetData returns device entries and registered devices in the *most recent* checkpoint format, *not* in the original format stored on disk.
func (*Data) MarshalCheckpoint ¶
MarshalCheckpoint returns marshalled data
func (*Data) UnmarshalCheckpoint ¶
UnmarshalCheckpoint returns unmarshalled data
func (*Data) VerifyChecksum ¶
VerifyChecksum verifies that passed checksum is same as calculated checksum
type DeviceManagerCheckpoint ¶
type DeviceManagerCheckpoint interface { checkpointmanager.Checkpoint GetData() ([]PodDevicesEntry, map[string][]string) }
DeviceManagerCheckpoint defines the operations to retrieve pod devices
func New ¶
func New(devEntries []PodDevicesEntry, devices map[string][]string) DeviceManagerCheckpoint
New returns an instance of Checkpoint - must be an alias for the most recent version
type DevicesPerNUMA ¶ added in v1.20.0
DevicesPerNUMA represents device ids obtained from device plugin per NUMA node id
func NewDevicesPerNUMA ¶ added in v1.20.0
func NewDevicesPerNUMA() DevicesPerNUMA
NewDevicesPerNUMA is a function that creates DevicesPerNUMA map
type PodDevicesEntry ¶
type PodDevicesEntry struct { PodUID string ContainerName string ResourceName string DeviceIDs DevicesPerNUMA AllocResp []byte }
PodDevicesEntry connects pod information to devices