 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CheckpointData ¶
CheckpointData is a sample example structure to be used in test cases for checkpointing
func (*CheckpointData) MarshalCheckpoint ¶
func (cp *CheckpointData) MarshalCheckpoint() ([]byte, error)
func (*CheckpointData) UnmarshalCheckpoint ¶
func (cp *CheckpointData) UnmarshalCheckpoint(blob []byte) error
func (*CheckpointData) VerifyChecksum ¶
func (cp *CheckpointData) VerifyChecksum() error
type Data ¶
type Data struct {
	PortMappings []*PortMapping `json:"port_mappings,omitempty"`
	HostNetwork  bool           `json:"host_network,omitempty"`
}
    CheckpointData contains all types of data that can be stored in the checkpoint.
type PortMapping ¶
type PortMapping struct {
	// protocol of the port mapping.
	Protocol *protocol
	// Port number within the container.
	ContainerPort *int32
	// Port number on the host.
	HostPort *int32
}
    portMapping is the port mapping configurations of a sandbox.
 Click to show internal directories. 
   Click to hide internal directories.