Documentation ¶
Index ¶
- Constants
- func IsolationContainerConfigFromKubeContainer(op trace.Operation, cSpec *v1.Container, imgConfig *metadata.ImageConfig, ...) (proxy.IsolationContainerConfig, error)
- type DeleteResponse
- type PodCreator
- type PodDeleter
- type PodStarter
- type PodStopper
- type VicPodCreator
- type VicPodCreatorError
- type VicPodDeleter
- type VicPodDeleterError
- type VicPodStarter
- type VicPodStarterError
- type VicPodStopper
- type VicPodStopperError
Constants ¶
View Source
const ( // MemoryAlignMB is the value to which container VM memory must align in order for hotadd to work MemoryAlignMB = 128 // MemoryMinMB - the minimum allowable container memory size MemoryMinMB = 512 // MemoryDefaultMB - the default container VM memory size MemoryDefaultMB = 2048 // MinCPUs - the minimum number of allowable CPUs the container can use MinCPUs = 1 // DefaultCPUs - the default number of container VM CPUs DefaultCPUs = 2 DefaultMemory = 512 MiBytesUnit = 1024 * 1024 // Errors PodCreatorPortlayerClientError = VicPodCreatorError("PodCreator called with an invalid portlayer client") PodCreatorImageStoreError = VicPodCreatorError("PodCreator called with an invalid image store") PodCreatorIsolationProxyError = VicPodCreatorError("PodCreator called with an invalid isolation proxy") PodCreatorPodCacheError = VicPodCreatorError("PodCreator called with an invalid pod cache") PodCreatorPersonaAddrError = VicPodCreatorError("PodCreator called with an invalid VIC persona addr") PodCreatorPortlayerAddrError = VicPodCreatorError("PodCreator called with an invalid VIC portlayer addr") PodCreatorInvalidPodSpecError = VicPodCreatorError("CreatePod called with nil pod") PodCreatorInvalidArgsError = VicPodCreatorError("Invalid arguments") )
View Source
const ( PodDeleterPortlayerClientError = VicPodDeleterError("PodDeleter called with an invalid portlayer client") PodDeleterIsolationProxyError = VicPodDeleterError("PodDeleter called with an invalid isolation proxy") PodDeleterPodCacheError = VicPodDeleterError("PodDeleter called with an invalid pod cache") PodDeleterPersonaAddrError = VicPodDeleterError("PodDeleter called with an invalid VIC persona addr") PodDeleterPortlayerAddrError = VicPodDeleterError("PodDeleter called with an invalid VIC portlayer addr") PodDeleterInvalidPodSpecError = VicPodDeleterError("PodDeleter called with nil pod") )
View Source
const ( PodStarterPortlayerClientError = VicPodStarterError("PodStarter called with an invalid portlayer client") PodStarterIsolationProxyError = VicPodStarterError("PodStarter called with an invalid isolation proxy") PodStarterInvalidPodIDError = VicPodStarterError("PodStarter called with invalid Pod ID") PodStarterInvalidPodNameError = VicPodStarterError("PodStarter called with invalid Pod name") )
View Source
const ( PodStopperPortlayerClientError = VicPodStopperError("PodStopper called with an invalid portlayer client") PodStopperIsolationProxyError = VicPodStopperError("PodStopper called with an invalid isolation proxy") PodStopperInvalidPodIDError = VicPodStopperError("PodStopper called with invalid PodID") PodStopperInvalidPodNameError = VicPodStopperError("PodStopper called with invalid PodName") )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DeleteResponse ¶
type PodCreator ¶
func NewPodCreator ¶
func NewPodCreator(client *client.PortLayer, imageStore proxy.ImageStore, isolationProxy proxy.IsolationProxy, podCache cache.PodCache, personaAddr string, portlayerAddr string) (PodCreator, error)
type PodDeleter ¶
func NewPodDeleter ¶
func NewPodDeleter(client *client.PortLayer, isolationProxy proxy.IsolationProxy, podCache cache.PodCache, personaAddr string, portlayerAddr string) (PodDeleter, error)
type PodStarter ¶
func NewPodStarter ¶
func NewPodStarter(client *client.PortLayer, isolationProxy proxy.IsolationProxy) (PodStarter, error)
type PodStopper ¶
func NewPodStopper ¶
func NewPodStopper(client *client.PortLayer, isolationProxy proxy.IsolationProxy) (PodStopper, error)
type VicPodCreator ¶
type VicPodCreator struct {
// contains filtered or unexported fields
}
type VicPodCreatorError ¶
type VicPodCreatorError string
func NewPodCreatorNilImgConfigError ¶
func NewPodCreatorNilImgConfigError(image string) VicPodCreatorError
func NewPodCreatorPullError ¶
func NewPodCreatorPullError(image, msg string) VicPodCreatorError
func (VicPodCreatorError) Error ¶
func (e VicPodCreatorError) Error() string
type VicPodDeleter ¶
type VicPodDeleter struct {
// contains filtered or unexported fields
}
type VicPodDeleterError ¶
type VicPodDeleterError string
func (VicPodDeleterError) Error ¶
func (e VicPodDeleterError) Error() string
type VicPodStarter ¶
type VicPodStarter struct {
// contains filtered or unexported fields
}
type VicPodStarterError ¶
type VicPodStarterError string
func (VicPodStarterError) Error ¶
func (e VicPodStarterError) Error() string
type VicPodStopper ¶
type VicPodStopper struct {
// contains filtered or unexported fields
}
type VicPodStopperError ¶
type VicPodStopperError string
func (VicPodStopperError) Error ¶
func (e VicPodStopperError) Error() string
Click to show internal directories.
Click to hide internal directories.