v1

package
v0.20.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2020 License: Apache-2.0 Imports: 13 Imported by: 212

Documentation

Index

Constants

View Source
const (
	// RuntimeReady means the runtime is up and ready to accept basic containers.
	RuntimeReady = "RuntimeReady"
	// NetworkReady means the runtime network is up and ready to accept containers which require network.
	NetworkReady = "NetworkReady"
)

Required runtime condition type.

Variables

View Source
var (
	ErrInvalidLengthApi        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowApi          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupApi = fmt.Errorf("proto: unexpected end of group")
)
View Source
var ContainerState_name = map[int32]string{
	0: "CONTAINER_CREATED",
	1: "CONTAINER_RUNNING",
	2: "CONTAINER_EXITED",
	3: "CONTAINER_UNKNOWN",
}
View Source
var ContainerState_value = map[string]int32{
	"CONTAINER_CREATED": 0,
	"CONTAINER_RUNNING": 1,
	"CONTAINER_EXITED":  2,
	"CONTAINER_UNKNOWN": 3,
}
View Source
var MountPropagation_name = map[int32]string{
	0: "PROPAGATION_PRIVATE",
	1: "PROPAGATION_HOST_TO_CONTAINER",
	2: "PROPAGATION_BIDIRECTIONAL",
}
View Source
var MountPropagation_value = map[string]int32{
	"PROPAGATION_PRIVATE":           0,
	"PROPAGATION_HOST_TO_CONTAINER": 1,
	"PROPAGATION_BIDIRECTIONAL":     2,
}
View Source
var NamespaceMode_name = map[int32]string{
	0: "POD",
	1: "CONTAINER",
	2: "NODE",
	3: "TARGET",
}
View Source
var NamespaceMode_value = map[string]int32{
	"POD":       0,
	"CONTAINER": 1,
	"NODE":      2,
	"TARGET":    3,
}
View Source
var PodSandboxState_name = map[int32]string{
	0: "SANDBOX_READY",
	1: "SANDBOX_NOTREADY",
}
View Source
var PodSandboxState_value = map[string]int32{
	"SANDBOX_READY":    0,
	"SANDBOX_NOTREADY": 1,
}
View Source
var Protocol_name = map[int32]string{
	0: "TCP",
	1: "UDP",
	2: "SCTP",
}
View Source
var Protocol_value = map[string]int32{
	"TCP":  0,
	"UDP":  1,
	"SCTP": 2,
}
View Source
var SecurityProfile_ProfileType_name = map[int32]string{
	0: "RuntimeDefault",
	1: "Unconfined",
	2: "Localhost",
}
View Source
var SecurityProfile_ProfileType_value = map[string]int32{
	"RuntimeDefault": 0,
	"Unconfined":     1,
	"Localhost":      2,
}

Functions

func RegisterImageServiceServer

func RegisterImageServiceServer(s *grpc.Server, srv ImageServiceServer)

func RegisterRuntimeServiceServer

func RegisterRuntimeServiceServer(s *grpc.Server, srv RuntimeServiceServer)

Types

type AttachRequest

type AttachRequest struct {
	// ID of the container to which to attach.
	ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	// Whether to stream stdin.
	// One of `stdin`, `stdout`, and `stderr` MUST be true.
	Stdin bool `protobuf:"varint,2,opt,name=stdin,proto3" json:"stdin,omitempty"`
	// Whether the process being attached is running in a TTY.
	// This must match the TTY setting in the ContainerConfig.
	Tty bool `protobuf:"varint,3,opt,name=tty,proto3" json:"tty,omitempty"`
	// Whether to stream stdout.
	// One of `stdin`, `stdout`, and `stderr` MUST be true.
	Stdout bool `protobuf:"varint,4,opt,name=stdout,proto3" json:"stdout,omitempty"`
	// Whether to stream stderr.
	// One of `stdin`, `stdout`, and `stderr` MUST be true.
	// If `tty` is true, `stderr` MUST be false. Multiplexing is not supported
	// in this case. The output of stdout and stderr will be combined to a
	// single stream.
	Stderr               bool     `protobuf:"varint,5,opt,name=stderr,proto3" json:"stderr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AttachRequest) Descriptor

func (*AttachRequest) Descriptor() ([]byte, []int)

func (*AttachRequest) GetContainerId

func (m *AttachRequest) GetContainerId() string

func (*AttachRequest) GetStderr

func (m *AttachRequest) GetStderr() bool

func (*AttachRequest) GetStdin

func (m *AttachRequest) GetStdin() bool

func (*AttachRequest) GetStdout

func (m *AttachRequest) GetStdout() bool

func (*AttachRequest) GetTty

func (m *AttachRequest) GetTty() bool

func (*AttachRequest) Marshal

func (m *AttachRequest) Marshal() (dAtA []byte, err error)

func (*AttachRequest) MarshalTo

func (m *AttachRequest) MarshalTo(dAtA []byte) (int, error)

func (*AttachRequest) MarshalToSizedBuffer

func (m *AttachRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AttachRequest) ProtoMessage

func (*AttachRequest) ProtoMessage()

func (*AttachRequest) Reset

func (m *AttachRequest) Reset()

func (*AttachRequest) Size

func (m *AttachRequest) Size() (n int)

func (*AttachRequest) String

func (this *AttachRequest) String() string

func (*AttachRequest) Unmarshal

func (m *AttachRequest) Unmarshal(dAtA []byte) error

func (*AttachRequest) XXX_DiscardUnknown

func (m *AttachRequest) XXX_DiscardUnknown()

func (*AttachRequest) XXX_Marshal

func (m *AttachRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttachRequest) XXX_Merge

func (m *AttachRequest) XXX_Merge(src proto.Message)

func (*AttachRequest) XXX_Size

func (m *AttachRequest) XXX_Size() int

func (*AttachRequest) XXX_Unmarshal

func (m *AttachRequest) XXX_Unmarshal(b []byte) error

type AttachResponse

type AttachResponse struct {
	// Fully qualified URL of the attach streaming server.
	Url                  string   `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AttachResponse) Descriptor

func (*AttachResponse) Descriptor() ([]byte, []int)

func (*AttachResponse) GetUrl

func (m *AttachResponse) GetUrl() string

func (*AttachResponse) Marshal

func (m *AttachResponse) Marshal() (dAtA []byte, err error)

func (*AttachResponse) MarshalTo

func (m *AttachResponse) MarshalTo(dAtA []byte) (int, error)

func (*AttachResponse) MarshalToSizedBuffer

func (m *AttachResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AttachResponse) ProtoMessage

func (*AttachResponse) ProtoMessage()

func (*AttachResponse) Reset

func (m *AttachResponse) Reset()

func (*AttachResponse) Size

func (m *AttachResponse) Size() (n int)

func (*AttachResponse) String

func (this *AttachResponse) String() string

func (*AttachResponse) Unmarshal

func (m *AttachResponse) Unmarshal(dAtA []byte) error

func (*AttachResponse) XXX_DiscardUnknown

func (m *AttachResponse) XXX_DiscardUnknown()

func (*AttachResponse) XXX_Marshal

func (m *AttachResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AttachResponse) XXX_Merge

func (m *AttachResponse) XXX_Merge(src proto.Message)

func (*AttachResponse) XXX_Size

func (m *AttachResponse) XXX_Size() int

func (*AttachResponse) XXX_Unmarshal

func (m *AttachResponse) XXX_Unmarshal(b []byte) error

type AuthConfig

type AuthConfig struct {
	Username      string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
	Password      string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Auth          string `protobuf:"bytes,3,opt,name=auth,proto3" json:"auth,omitempty"`
	ServerAddress string `protobuf:"bytes,4,opt,name=server_address,json=serverAddress,proto3" json:"server_address,omitempty"`
	// IdentityToken is used to authenticate the user and get
	// an access token for the registry.
	IdentityToken string `protobuf:"bytes,5,opt,name=identity_token,json=identityToken,proto3" json:"identity_token,omitempty"`
	// RegistryToken is a bearer token to be sent to a registry
	RegistryToken        string   `protobuf:"bytes,6,opt,name=registry_token,json=registryToken,proto3" json:"registry_token,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

AuthConfig contains authorization information for connecting to a registry.

func (*AuthConfig) Descriptor

func (*AuthConfig) Descriptor() ([]byte, []int)

func (*AuthConfig) GetAuth

func (m *AuthConfig) GetAuth() string

func (*AuthConfig) GetIdentityToken

func (m *AuthConfig) GetIdentityToken() string

func (*AuthConfig) GetPassword

func (m *AuthConfig) GetPassword() string

func (*AuthConfig) GetRegistryToken

func (m *AuthConfig) GetRegistryToken() string

func (*AuthConfig) GetServerAddress

func (m *AuthConfig) GetServerAddress() string

func (*AuthConfig) GetUsername

func (m *AuthConfig) GetUsername() string

func (*AuthConfig) Marshal

func (m *AuthConfig) Marshal() (dAtA []byte, err error)

func (*AuthConfig) MarshalTo

func (m *AuthConfig) MarshalTo(dAtA []byte) (int, error)

func (*AuthConfig) MarshalToSizedBuffer

func (m *AuthConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AuthConfig) ProtoMessage

func (*AuthConfig) ProtoMessage()

func (*AuthConfig) Reset

func (m *AuthConfig) Reset()

func (*AuthConfig) Size

func (m *AuthConfig) Size() (n int)

func (*AuthConfig) String

func (this *AuthConfig) String() string

func (*AuthConfig) Unmarshal

func (m *AuthConfig) Unmarshal(dAtA []byte) error

func (*AuthConfig) XXX_DiscardUnknown

func (m *AuthConfig) XXX_DiscardUnknown()

func (*AuthConfig) XXX_Marshal

func (m *AuthConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AuthConfig) XXX_Merge

func (m *AuthConfig) XXX_Merge(src proto.Message)

func (*AuthConfig) XXX_Size

func (m *AuthConfig) XXX_Size() int

func (*AuthConfig) XXX_Unmarshal

func (m *AuthConfig) XXX_Unmarshal(b []byte) error

type Capability

type Capability struct {
	// List of capabilities to add.
	AddCapabilities []string `protobuf:"bytes,1,rep,name=add_capabilities,json=addCapabilities,proto3" json:"add_capabilities,omitempty"`
	// List of capabilities to drop.
	DropCapabilities     []string `protobuf:"bytes,2,rep,name=drop_capabilities,json=dropCapabilities,proto3" json:"drop_capabilities,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Capability contains the container capabilities to add or drop

func (*Capability) Descriptor

func (*Capability) Descriptor() ([]byte, []int)

func (*Capability) GetAddCapabilities

func (m *Capability) GetAddCapabilities() []string

func (*Capability) GetDropCapabilities

func (m *Capability) GetDropCapabilities() []string

func (*Capability) Marshal

func (m *Capability) Marshal() (dAtA []byte, err error)

func (*Capability) MarshalTo

func (m *Capability) MarshalTo(dAtA []byte) (int, error)

func (*Capability) MarshalToSizedBuffer

func (m *Capability) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Capability) ProtoMessage

func (*Capability) ProtoMessage()

func (*Capability) Reset

func (m *Capability) Reset()

func (*Capability) Size

func (m *Capability) Size() (n int)

func (*Capability) String

func (this *Capability) String() string

func (*Capability) Unmarshal

func (m *Capability) Unmarshal(dAtA []byte) error

func (*Capability) XXX_DiscardUnknown

func (m *Capability) XXX_DiscardUnknown()

func (*Capability) XXX_Marshal

func (m *Capability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Capability) XXX_Merge

func (m *Capability) XXX_Merge(src proto.Message)

func (*Capability) XXX_Size

func (m *Capability) XXX_Size() int

func (*Capability) XXX_Unmarshal

func (m *Capability) XXX_Unmarshal(b []byte) error

type Container

type Container struct {
	// ID of the container, used by the container runtime to identify
	// a container.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// ID of the sandbox to which this container belongs.
	PodSandboxId string `protobuf:"bytes,2,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	// Metadata of the container.
	Metadata *ContainerMetadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// Spec of the image.
	Image *ImageSpec `protobuf:"bytes,4,opt,name=image,proto3" json:"image,omitempty"`
	// Reference to the image in use. For most runtimes, this should be an
	// image ID.
	ImageRef string `protobuf:"bytes,5,opt,name=image_ref,json=imageRef,proto3" json:"image_ref,omitempty"`
	// State of the container.
	State ContainerState `protobuf:"varint,6,opt,name=state,proto3,enum=runtime.v1.ContainerState" json:"state,omitempty"`
	// Creation time of the container in nanoseconds.
	CreatedAt int64 `protobuf:"varint,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Key-value pairs that may be used to scope and select individual resources.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Unstructured key-value map holding arbitrary metadata.
	// Annotations MUST NOT be altered by the runtime; the value of this field
	// MUST be identical to that of the corresponding ContainerConfig used to
	// instantiate this Container.
	Annotations          map[string]string `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

Container provides the runtime information for a container, such as ID, hash, state of the container.

func (*Container) Descriptor

func (*Container) Descriptor() ([]byte, []int)

func (*Container) GetAnnotations

func (m *Container) GetAnnotations() map[string]string

func (*Container) GetCreatedAt

func (m *Container) GetCreatedAt() int64

func (*Container) GetId

func (m *Container) GetId() string

func (*Container) GetImage

func (m *Container) GetImage() *ImageSpec

func (*Container) GetImageRef

func (m *Container) GetImageRef() string

func (*Container) GetLabels

func (m *Container) GetLabels() map[string]string

func (*Container) GetMetadata

func (m *Container) GetMetadata() *ContainerMetadata

func (*Container) GetPodSandboxId

func (m *Container) GetPodSandboxId() string

func (*Container) GetState

func (m *Container) GetState() ContainerState

func (*Container) Marshal

func (m *Container) Marshal() (dAtA []byte, err error)

func (*Container) MarshalTo

func (m *Container) MarshalTo(dAtA []byte) (int, error)

func (*Container) MarshalToSizedBuffer

func (m *Container) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Container) ProtoMessage

func (*Container) ProtoMessage()

func (*Container) Reset

func (m *Container) Reset()

func (*Container) Size

func (m *Container) Size() (n int)

func (*Container) String

func (this *Container) String() string

func (*Container) Unmarshal

func (m *Container) Unmarshal(dAtA []byte) error

func (*Container) XXX_DiscardUnknown

func (m *Container) XXX_DiscardUnknown()

func (*Container) XXX_Marshal

func (m *Container) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Container) XXX_Merge

func (m *Container) XXX_Merge(src proto.Message)

func (*Container) XXX_Size

func (m *Container) XXX_Size() int

func (*Container) XXX_Unmarshal

func (m *Container) XXX_Unmarshal(b []byte) error

type ContainerAttributes

type ContainerAttributes struct {
	// ID of the container.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Metadata of the container.
	Metadata *ContainerMetadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// Key-value pairs that may be used to scope and select individual resources.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Unstructured key-value map holding arbitrary metadata.
	// Annotations MUST NOT be altered by the runtime; the value of this field
	// MUST be identical to that of the corresponding ContainerConfig used to
	// instantiate the Container this status represents.
	Annotations          map[string]string `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

ContainerAttributes provides basic information of the container.

func (*ContainerAttributes) Descriptor

func (*ContainerAttributes) Descriptor() ([]byte, []int)

func (*ContainerAttributes) GetAnnotations

func (m *ContainerAttributes) GetAnnotations() map[string]string

func (*ContainerAttributes) GetId

func (m *ContainerAttributes) GetId() string

func (*ContainerAttributes) GetLabels

func (m *ContainerAttributes) GetLabels() map[string]string

func (*ContainerAttributes) GetMetadata

func (m *ContainerAttributes) GetMetadata() *ContainerMetadata

func (*ContainerAttributes) Marshal

func (m *ContainerAttributes) Marshal() (dAtA []byte, err error)

func (*ContainerAttributes) MarshalTo

func (m *ContainerAttributes) MarshalTo(dAtA []byte) (int, error)

func (*ContainerAttributes) MarshalToSizedBuffer

func (m *ContainerAttributes) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerAttributes) ProtoMessage

func (*ContainerAttributes) ProtoMessage()

func (*ContainerAttributes) Reset

func (m *ContainerAttributes) Reset()

func (*ContainerAttributes) Size

func (m *ContainerAttributes) Size() (n int)

func (*ContainerAttributes) String

func (this *ContainerAttributes) String() string

func (*ContainerAttributes) Unmarshal

func (m *ContainerAttributes) Unmarshal(dAtA []byte) error

func (*ContainerAttributes) XXX_DiscardUnknown

func (m *ContainerAttributes) XXX_DiscardUnknown()

func (*ContainerAttributes) XXX_Marshal

func (m *ContainerAttributes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerAttributes) XXX_Merge

func (m *ContainerAttributes) XXX_Merge(src proto.Message)

func (*ContainerAttributes) XXX_Size

func (m *ContainerAttributes) XXX_Size() int

func (*ContainerAttributes) XXX_Unmarshal

func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error

type ContainerConfig

type ContainerConfig struct {
	// Metadata of the container. This information will uniquely identify the
	// container, and the runtime should leverage this to ensure correct
	// operation. The runtime may also use this information to improve UX, such
	// as by constructing a readable name.
	Metadata *ContainerMetadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// Image to use.
	Image *ImageSpec `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
	// Command to execute (i.e., entrypoint for docker)
	Command []string `protobuf:"bytes,3,rep,name=command,proto3" json:"command,omitempty"`
	// Args for the Command (i.e., command for docker)
	Args []string `protobuf:"bytes,4,rep,name=args,proto3" json:"args,omitempty"`
	// Current working directory of the command.
	WorkingDir string `protobuf:"bytes,5,opt,name=working_dir,json=workingDir,proto3" json:"working_dir,omitempty"`
	// List of environment variable to set in the container.
	Envs []*KeyValue `protobuf:"bytes,6,rep,name=envs,proto3" json:"envs,omitempty"`
	// Mounts for the container.
	Mounts []*Mount `protobuf:"bytes,7,rep,name=mounts,proto3" json:"mounts,omitempty"`
	// Devices for the container.
	Devices []*Device `protobuf:"bytes,8,rep,name=devices,proto3" json:"devices,omitempty"`
	// Key-value pairs that may be used to scope and select individual resources.
	// Label keys are of the form:
	//     label-key ::= prefixed-name | name
	//     prefixed-name ::= prefix '/' name
	//     prefix ::= DNS_SUBDOMAIN
	//     name ::= DNS_LABEL
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Unstructured key-value map that may be used by the kubelet to store and
	// retrieve arbitrary metadata.
	//
	// Annotations MUST NOT be altered by the runtime; the annotations stored
	// here MUST be returned in the ContainerStatus associated with the container
	// this ContainerConfig creates.
	//
	// In general, in order to preserve a well-defined interface between the
	// kubelet and the container runtime, annotations SHOULD NOT influence
	// runtime behaviour.
	Annotations map[string]string `` /* 164-byte string literal not displayed */
	// Path relative to PodSandboxConfig.LogDirectory for container to store
	// the log (STDOUT and STDERR) on the host.
	// E.g.,
	//     PodSandboxConfig.LogDirectory = `/var/log/pods/<podUID>/`
	//     ContainerConfig.LogPath = `containerName/Instance#.log`
	//
	// WARNING: Log management and how kubelet should interface with the
	// container logs are under active discussion in
	// https://issues.k8s.io/24677. There *may* be future change of direction
	// for logging as the discussion carries on.
	LogPath string `protobuf:"bytes,11,opt,name=log_path,json=logPath,proto3" json:"log_path,omitempty"`
	// Variables for interactive containers, these have very specialized
	// use-cases (e.g. debugging).
	Stdin     bool `protobuf:"varint,12,opt,name=stdin,proto3" json:"stdin,omitempty"`
	StdinOnce bool `protobuf:"varint,13,opt,name=stdin_once,json=stdinOnce,proto3" json:"stdin_once,omitempty"`
	Tty       bool `protobuf:"varint,14,opt,name=tty,proto3" json:"tty,omitempty"`
	// Configuration specific to Linux containers.
	Linux *LinuxContainerConfig `protobuf:"bytes,15,opt,name=linux,proto3" json:"linux,omitempty"`
	// Configuration specific to Windows containers.
	Windows              *WindowsContainerConfig `protobuf:"bytes,16,opt,name=windows,proto3" json:"windows,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

ContainerConfig holds all the required and optional fields for creating a container.

func (*ContainerConfig) Descriptor

func (*ContainerConfig) Descriptor() ([]byte, []int)

func (*ContainerConfig) GetAnnotations

func (m *ContainerConfig) GetAnnotations() map[string]string

func (*ContainerConfig) GetArgs

func (m *ContainerConfig) GetArgs() []string

func (*ContainerConfig) GetCommand

func (m *ContainerConfig) GetCommand() []string

func (*ContainerConfig) GetDevices

func (m *ContainerConfig) GetDevices() []*Device

func (*ContainerConfig) GetEnvs

func (m *ContainerConfig) GetEnvs() []*KeyValue

func (*ContainerConfig) GetImage

func (m *ContainerConfig) GetImage() *ImageSpec

func (*ContainerConfig) GetLabels

func (m *ContainerConfig) GetLabels() map[string]string

func (*ContainerConfig) GetLinux

func (m *ContainerConfig) GetLinux() *LinuxContainerConfig

func (*ContainerConfig) GetLogPath

func (m *ContainerConfig) GetLogPath() string

func (*ContainerConfig) GetMetadata

func (m *ContainerConfig) GetMetadata() *ContainerMetadata

func (*ContainerConfig) GetMounts

func (m *ContainerConfig) GetMounts() []*Mount

func (*ContainerConfig) GetStdin

func (m *ContainerConfig) GetStdin() bool

func (*ContainerConfig) GetStdinOnce

func (m *ContainerConfig) GetStdinOnce() bool

func (*ContainerConfig) GetTty

func (m *ContainerConfig) GetTty() bool

func (*ContainerConfig) GetWindows

func (m *ContainerConfig) GetWindows() *WindowsContainerConfig

func (*ContainerConfig) GetWorkingDir

func (m *ContainerConfig) GetWorkingDir() string

func (*ContainerConfig) Marshal

func (m *ContainerConfig) Marshal() (dAtA []byte, err error)

func (*ContainerConfig) MarshalTo

func (m *ContainerConfig) MarshalTo(dAtA []byte) (int, error)

func (*ContainerConfig) MarshalToSizedBuffer

func (m *ContainerConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerConfig) ProtoMessage

func (*ContainerConfig) ProtoMessage()

func (*ContainerConfig) Reset

func (m *ContainerConfig) Reset()

func (*ContainerConfig) Size

func (m *ContainerConfig) Size() (n int)

func (*ContainerConfig) String

func (this *ContainerConfig) String() string

func (*ContainerConfig) Unmarshal

func (m *ContainerConfig) Unmarshal(dAtA []byte) error

func (*ContainerConfig) XXX_DiscardUnknown

func (m *ContainerConfig) XXX_DiscardUnknown()

func (*ContainerConfig) XXX_Marshal

func (m *ContainerConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerConfig) XXX_Merge

func (m *ContainerConfig) XXX_Merge(src proto.Message)

func (*ContainerConfig) XXX_Size

func (m *ContainerConfig) XXX_Size() int

func (*ContainerConfig) XXX_Unmarshal

func (m *ContainerConfig) XXX_Unmarshal(b []byte) error

type ContainerFilter

type ContainerFilter struct {
	// ID of the container.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// State of the container.
	State *ContainerStateValue `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	// ID of the PodSandbox.
	PodSandboxId string `protobuf:"bytes,3,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	// LabelSelector to select matches.
	// Only api.MatchLabels is supported for now and the requirements
	// are ANDed. MatchExpressions is not supported yet.
	LabelSelector        map[string]string `` /* 188-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

ContainerFilter is used to filter containers. All those fields are combined with 'AND'

func (*ContainerFilter) Descriptor

func (*ContainerFilter) Descriptor() ([]byte, []int)

func (*ContainerFilter) GetId

func (m *ContainerFilter) GetId() string

func (*ContainerFilter) GetLabelSelector

func (m *ContainerFilter) GetLabelSelector() map[string]string

func (*ContainerFilter) GetPodSandboxId

func (m *ContainerFilter) GetPodSandboxId() string

func (*ContainerFilter) GetState

func (m *ContainerFilter) GetState() *ContainerStateValue

func (*ContainerFilter) Marshal

func (m *ContainerFilter) Marshal() (dAtA []byte, err error)

func (*ContainerFilter) MarshalTo

func (m *ContainerFilter) MarshalTo(dAtA []byte) (int, error)

func (*ContainerFilter) MarshalToSizedBuffer

func (m *ContainerFilter) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerFilter) ProtoMessage

func (*ContainerFilter) ProtoMessage()

func (*ContainerFilter) Reset

func (m *ContainerFilter) Reset()

func (*ContainerFilter) Size

func (m *ContainerFilter) Size() (n int)

func (*ContainerFilter) String

func (this *ContainerFilter) String() string

func (*ContainerFilter) Unmarshal

func (m *ContainerFilter) Unmarshal(dAtA []byte) error

func (*ContainerFilter) XXX_DiscardUnknown

func (m *ContainerFilter) XXX_DiscardUnknown()

func (*ContainerFilter) XXX_Marshal

func (m *ContainerFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerFilter) XXX_Merge

func (m *ContainerFilter) XXX_Merge(src proto.Message)

func (*ContainerFilter) XXX_Size

func (m *ContainerFilter) XXX_Size() int

func (*ContainerFilter) XXX_Unmarshal

func (m *ContainerFilter) XXX_Unmarshal(b []byte) error

type ContainerMetadata

type ContainerMetadata struct {
	// Name of the container. Same as the container name in the PodSpec.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Attempt number of creating the container. Default: 0.
	Attempt              uint32   `protobuf:"varint,2,opt,name=attempt,proto3" json:"attempt,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ContainerMetadata holds all necessary information for building the container name. The container runtime is encouraged to expose the metadata in its user interface for better user experience. E.g., runtime can construct a unique container name based on the metadata. Note that (name, attempt) is unique within a sandbox for the entire lifetime of the sandbox.

func (*ContainerMetadata) Descriptor

func (*ContainerMetadata) Descriptor() ([]byte, []int)

func (*ContainerMetadata) GetAttempt

func (m *ContainerMetadata) GetAttempt() uint32

func (*ContainerMetadata) GetName

func (m *ContainerMetadata) GetName() string

func (*ContainerMetadata) Marshal

func (m *ContainerMetadata) Marshal() (dAtA []byte, err error)

func (*ContainerMetadata) MarshalTo

func (m *ContainerMetadata) MarshalTo(dAtA []byte) (int, error)

func (*ContainerMetadata) MarshalToSizedBuffer

func (m *ContainerMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerMetadata) ProtoMessage

func (*ContainerMetadata) ProtoMessage()

func (*ContainerMetadata) Reset

func (m *ContainerMetadata) Reset()

func (*ContainerMetadata) Size

func (m *ContainerMetadata) Size() (n int)

func (*ContainerMetadata) String

func (this *ContainerMetadata) String() string

func (*ContainerMetadata) Unmarshal

func (m *ContainerMetadata) Unmarshal(dAtA []byte) error

func (*ContainerMetadata) XXX_DiscardUnknown

func (m *ContainerMetadata) XXX_DiscardUnknown()

func (*ContainerMetadata) XXX_Marshal

func (m *ContainerMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerMetadata) XXX_Merge

func (m *ContainerMetadata) XXX_Merge(src proto.Message)

func (*ContainerMetadata) XXX_Size

func (m *ContainerMetadata) XXX_Size() int

func (*ContainerMetadata) XXX_Unmarshal

func (m *ContainerMetadata) XXX_Unmarshal(b []byte) error

type ContainerState

type ContainerState int32
const (
	ContainerState_CONTAINER_CREATED ContainerState = 0
	ContainerState_CONTAINER_RUNNING ContainerState = 1
	ContainerState_CONTAINER_EXITED  ContainerState = 2
	ContainerState_CONTAINER_UNKNOWN ContainerState = 3
)

func (ContainerState) EnumDescriptor

func (ContainerState) EnumDescriptor() ([]byte, []int)

func (ContainerState) String

func (x ContainerState) String() string

type ContainerStateValue

type ContainerStateValue struct {
	// State of the container.
	State                ContainerState `protobuf:"varint,1,opt,name=state,proto3,enum=runtime.v1.ContainerState" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

ContainerStateValue is the wrapper of ContainerState.

func (*ContainerStateValue) Descriptor

func (*ContainerStateValue) Descriptor() ([]byte, []int)

func (*ContainerStateValue) GetState

func (m *ContainerStateValue) GetState() ContainerState

func (*ContainerStateValue) Marshal

func (m *ContainerStateValue) Marshal() (dAtA []byte, err error)

func (*ContainerStateValue) MarshalTo

func (m *ContainerStateValue) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStateValue) MarshalToSizedBuffer

func (m *ContainerStateValue) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStateValue) ProtoMessage

func (*ContainerStateValue) ProtoMessage()

func (*ContainerStateValue) Reset

func (m *ContainerStateValue) Reset()

func (*ContainerStateValue) Size

func (m *ContainerStateValue) Size() (n int)

func (*ContainerStateValue) String

func (this *ContainerStateValue) String() string

func (*ContainerStateValue) Unmarshal

func (m *ContainerStateValue) Unmarshal(dAtA []byte) error

func (*ContainerStateValue) XXX_DiscardUnknown

func (m *ContainerStateValue) XXX_DiscardUnknown()

func (*ContainerStateValue) XXX_Marshal

func (m *ContainerStateValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStateValue) XXX_Merge

func (m *ContainerStateValue) XXX_Merge(src proto.Message)

func (*ContainerStateValue) XXX_Size

func (m *ContainerStateValue) XXX_Size() int

func (*ContainerStateValue) XXX_Unmarshal

func (m *ContainerStateValue) XXX_Unmarshal(b []byte) error

type ContainerStats

type ContainerStats struct {
	// Information of the container.
	Attributes *ContainerAttributes `protobuf:"bytes,1,opt,name=attributes,proto3" json:"attributes,omitempty"`
	// CPU usage gathered from the container.
	Cpu *CpuUsage `protobuf:"bytes,2,opt,name=cpu,proto3" json:"cpu,omitempty"`
	// Memory usage gathered from the container.
	Memory *MemoryUsage `protobuf:"bytes,3,opt,name=memory,proto3" json:"memory,omitempty"`
	// Usage of the writable layer.
	WritableLayer        *FilesystemUsage `protobuf:"bytes,4,opt,name=writable_layer,json=writableLayer,proto3" json:"writable_layer,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

ContainerStats provides the resource usage statistics for a container.

func (*ContainerStats) Descriptor

func (*ContainerStats) Descriptor() ([]byte, []int)

func (*ContainerStats) GetAttributes

func (m *ContainerStats) GetAttributes() *ContainerAttributes

func (*ContainerStats) GetCpu

func (m *ContainerStats) GetCpu() *CpuUsage

func (*ContainerStats) GetMemory

func (m *ContainerStats) GetMemory() *MemoryUsage

func (*ContainerStats) GetWritableLayer

func (m *ContainerStats) GetWritableLayer() *FilesystemUsage

func (*ContainerStats) Marshal

func (m *ContainerStats) Marshal() (dAtA []byte, err error)

func (*ContainerStats) MarshalTo

func (m *ContainerStats) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStats) MarshalToSizedBuffer

func (m *ContainerStats) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStats) ProtoMessage

func (*ContainerStats) ProtoMessage()

func (*ContainerStats) Reset

func (m *ContainerStats) Reset()

func (*ContainerStats) Size

func (m *ContainerStats) Size() (n int)

func (*ContainerStats) String

func (this *ContainerStats) String() string

func (*ContainerStats) Unmarshal

func (m *ContainerStats) Unmarshal(dAtA []byte) error

func (*ContainerStats) XXX_DiscardUnknown

func (m *ContainerStats) XXX_DiscardUnknown()

func (*ContainerStats) XXX_Marshal

func (m *ContainerStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStats) XXX_Merge

func (m *ContainerStats) XXX_Merge(src proto.Message)

func (*ContainerStats) XXX_Size

func (m *ContainerStats) XXX_Size() int

func (*ContainerStats) XXX_Unmarshal

func (m *ContainerStats) XXX_Unmarshal(b []byte) error

type ContainerStatsFilter

type ContainerStatsFilter struct {
	// ID of the container.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// ID of the PodSandbox.
	PodSandboxId string `protobuf:"bytes,2,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	// LabelSelector to select matches.
	// Only api.MatchLabels is supported for now and the requirements
	// are ANDed. MatchExpressions is not supported yet.
	LabelSelector        map[string]string `` /* 188-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

ContainerStatsFilter is used to filter containers. All those fields are combined with 'AND'

func (*ContainerStatsFilter) Descriptor

func (*ContainerStatsFilter) Descriptor() ([]byte, []int)

func (*ContainerStatsFilter) GetId

func (m *ContainerStatsFilter) GetId() string

func (*ContainerStatsFilter) GetLabelSelector

func (m *ContainerStatsFilter) GetLabelSelector() map[string]string

func (*ContainerStatsFilter) GetPodSandboxId

func (m *ContainerStatsFilter) GetPodSandboxId() string

func (*ContainerStatsFilter) Marshal

func (m *ContainerStatsFilter) Marshal() (dAtA []byte, err error)

func (*ContainerStatsFilter) MarshalTo

func (m *ContainerStatsFilter) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStatsFilter) MarshalToSizedBuffer

func (m *ContainerStatsFilter) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStatsFilter) ProtoMessage

func (*ContainerStatsFilter) ProtoMessage()

func (*ContainerStatsFilter) Reset

func (m *ContainerStatsFilter) Reset()

func (*ContainerStatsFilter) Size

func (m *ContainerStatsFilter) Size() (n int)

func (*ContainerStatsFilter) String

func (this *ContainerStatsFilter) String() string

func (*ContainerStatsFilter) Unmarshal

func (m *ContainerStatsFilter) Unmarshal(dAtA []byte) error

func (*ContainerStatsFilter) XXX_DiscardUnknown

func (m *ContainerStatsFilter) XXX_DiscardUnknown()

func (*ContainerStatsFilter) XXX_Marshal

func (m *ContainerStatsFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStatsFilter) XXX_Merge

func (m *ContainerStatsFilter) XXX_Merge(src proto.Message)

func (*ContainerStatsFilter) XXX_Size

func (m *ContainerStatsFilter) XXX_Size() int

func (*ContainerStatsFilter) XXX_Unmarshal

func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error

type ContainerStatsRequest

type ContainerStatsRequest struct {
	// ID of the container for which to retrieve stats.
	ContainerId          string   `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ContainerStatsRequest) Descriptor

func (*ContainerStatsRequest) Descriptor() ([]byte, []int)

func (*ContainerStatsRequest) GetContainerId

func (m *ContainerStatsRequest) GetContainerId() string

func (*ContainerStatsRequest) Marshal

func (m *ContainerStatsRequest) Marshal() (dAtA []byte, err error)

func (*ContainerStatsRequest) MarshalTo

func (m *ContainerStatsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStatsRequest) MarshalToSizedBuffer

func (m *ContainerStatsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStatsRequest) ProtoMessage

func (*ContainerStatsRequest) ProtoMessage()

func (*ContainerStatsRequest) Reset

func (m *ContainerStatsRequest) Reset()

func (*ContainerStatsRequest) Size

func (m *ContainerStatsRequest) Size() (n int)

func (*ContainerStatsRequest) String

func (this *ContainerStatsRequest) String() string

func (*ContainerStatsRequest) Unmarshal

func (m *ContainerStatsRequest) Unmarshal(dAtA []byte) error

func (*ContainerStatsRequest) XXX_DiscardUnknown

func (m *ContainerStatsRequest) XXX_DiscardUnknown()

func (*ContainerStatsRequest) XXX_Marshal

func (m *ContainerStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStatsRequest) XXX_Merge

func (m *ContainerStatsRequest) XXX_Merge(src proto.Message)

func (*ContainerStatsRequest) XXX_Size

func (m *ContainerStatsRequest) XXX_Size() int

func (*ContainerStatsRequest) XXX_Unmarshal

func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error

type ContainerStatsResponse

type ContainerStatsResponse struct {
	// Stats of the container.
	Stats                *ContainerStats `protobuf:"bytes,1,opt,name=stats,proto3" json:"stats,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ContainerStatsResponse) Descriptor

func (*ContainerStatsResponse) Descriptor() ([]byte, []int)

func (*ContainerStatsResponse) GetStats

func (m *ContainerStatsResponse) GetStats() *ContainerStats

func (*ContainerStatsResponse) Marshal

func (m *ContainerStatsResponse) Marshal() (dAtA []byte, err error)

func (*ContainerStatsResponse) MarshalTo

func (m *ContainerStatsResponse) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStatsResponse) MarshalToSizedBuffer

func (m *ContainerStatsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStatsResponse) ProtoMessage

func (*ContainerStatsResponse) ProtoMessage()

func (*ContainerStatsResponse) Reset

func (m *ContainerStatsResponse) Reset()

func (*ContainerStatsResponse) Size

func (m *ContainerStatsResponse) Size() (n int)

func (*ContainerStatsResponse) String

func (this *ContainerStatsResponse) String() string

func (*ContainerStatsResponse) Unmarshal

func (m *ContainerStatsResponse) Unmarshal(dAtA []byte) error

func (*ContainerStatsResponse) XXX_DiscardUnknown

func (m *ContainerStatsResponse) XXX_DiscardUnknown()

func (*ContainerStatsResponse) XXX_Marshal

func (m *ContainerStatsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStatsResponse) XXX_Merge

func (m *ContainerStatsResponse) XXX_Merge(src proto.Message)

func (*ContainerStatsResponse) XXX_Size

func (m *ContainerStatsResponse) XXX_Size() int

func (*ContainerStatsResponse) XXX_Unmarshal

func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error

type ContainerStatus

type ContainerStatus struct {
	// ID of the container.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Metadata of the container.
	Metadata *ContainerMetadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// Status of the container.
	State ContainerState `protobuf:"varint,3,opt,name=state,proto3,enum=runtime.v1.ContainerState" json:"state,omitempty"`
	// Creation time of the container in nanoseconds.
	CreatedAt int64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Start time of the container in nanoseconds. Default: 0 (not specified).
	StartedAt int64 `protobuf:"varint,5,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
	// Finish time of the container in nanoseconds. Default: 0 (not specified).
	FinishedAt int64 `protobuf:"varint,6,opt,name=finished_at,json=finishedAt,proto3" json:"finished_at,omitempty"`
	// Exit code of the container. Only required when finished_at != 0. Default: 0.
	ExitCode int32 `protobuf:"varint,7,opt,name=exit_code,json=exitCode,proto3" json:"exit_code,omitempty"`
	// Spec of the image.
	Image *ImageSpec `protobuf:"bytes,8,opt,name=image,proto3" json:"image,omitempty"`
	// Reference to the image in use. For most runtimes, this should be an
	// image ID
	ImageRef string `protobuf:"bytes,9,opt,name=image_ref,json=imageRef,proto3" json:"image_ref,omitempty"`
	// Brief CamelCase string explaining why container is in its current state.
	Reason string `protobuf:"bytes,10,opt,name=reason,proto3" json:"reason,omitempty"`
	// Human-readable message indicating details about why container is in its
	// current state.
	Message string `protobuf:"bytes,11,opt,name=message,proto3" json:"message,omitempty"`
	// Key-value pairs that may be used to scope and select individual resources.
	Labels map[string]string `` /* 154-byte string literal not displayed */
	// Unstructured key-value map holding arbitrary metadata.
	// Annotations MUST NOT be altered by the runtime; the value of this field
	// MUST be identical to that of the corresponding ContainerConfig used to
	// instantiate the Container this status represents.
	Annotations map[string]string `` /* 164-byte string literal not displayed */
	// Mounts for the container.
	Mounts []*Mount `protobuf:"bytes,14,rep,name=mounts,proto3" json:"mounts,omitempty"`
	// Log path of container.
	LogPath              string   `protobuf:"bytes,15,opt,name=log_path,json=logPath,proto3" json:"log_path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ContainerStatus represents the status of a container.

func (*ContainerStatus) Descriptor

func (*ContainerStatus) Descriptor() ([]byte, []int)

func (*ContainerStatus) GetAnnotations

func (m *ContainerStatus) GetAnnotations() map[string]string

func (*ContainerStatus) GetCreatedAt

func (m *ContainerStatus) GetCreatedAt() int64

func (*ContainerStatus) GetExitCode

func (m *ContainerStatus) GetExitCode() int32

func (*ContainerStatus) GetFinishedAt

func (m *ContainerStatus) GetFinishedAt() int64

func (*ContainerStatus) GetId

func (m *ContainerStatus) GetId() string

func (*ContainerStatus) GetImage

func (m *ContainerStatus) GetImage() *ImageSpec

func (*ContainerStatus) GetImageRef

func (m *ContainerStatus) GetImageRef() string

func (*ContainerStatus) GetLabels

func (m *ContainerStatus) GetLabels() map[string]string

func (*ContainerStatus) GetLogPath

func (m *ContainerStatus) GetLogPath() string

func (*ContainerStatus) GetMessage

func (m *ContainerStatus) GetMessage() string

func (*ContainerStatus) GetMetadata

func (m *ContainerStatus) GetMetadata() *ContainerMetadata

func (*ContainerStatus) GetMounts

func (m *ContainerStatus) GetMounts() []*Mount

func (*ContainerStatus) GetReason

func (m *ContainerStatus) GetReason() string

func (*ContainerStatus) GetStartedAt

func (m *ContainerStatus) GetStartedAt() int64

func (*ContainerStatus) GetState

func (m *ContainerStatus) GetState() ContainerState

func (*ContainerStatus) Marshal

func (m *ContainerStatus) Marshal() (dAtA []byte, err error)

func (*ContainerStatus) MarshalTo

func (m *ContainerStatus) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStatus) MarshalToSizedBuffer

func (m *ContainerStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStatus) ProtoMessage

func (*ContainerStatus) ProtoMessage()

func (*ContainerStatus) Reset

func (m *ContainerStatus) Reset()

func (*ContainerStatus) Size

func (m *ContainerStatus) Size() (n int)

func (*ContainerStatus) String

func (this *ContainerStatus) String() string

func (*ContainerStatus) Unmarshal

func (m *ContainerStatus) Unmarshal(dAtA []byte) error

func (*ContainerStatus) XXX_DiscardUnknown

func (m *ContainerStatus) XXX_DiscardUnknown()

func (*ContainerStatus) XXX_Marshal

func (m *ContainerStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStatus) XXX_Merge

func (m *ContainerStatus) XXX_Merge(src proto.Message)

func (*ContainerStatus) XXX_Size

func (m *ContainerStatus) XXX_Size() int

func (*ContainerStatus) XXX_Unmarshal

func (m *ContainerStatus) XXX_Unmarshal(b []byte) error

type ContainerStatusRequest

type ContainerStatusRequest struct {
	// ID of the container for which to retrieve status.
	ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	// Verbose indicates whether to return extra information about the container.
	Verbose              bool     `protobuf:"varint,2,opt,name=verbose,proto3" json:"verbose,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ContainerStatusRequest) Descriptor

func (*ContainerStatusRequest) Descriptor() ([]byte, []int)

func (*ContainerStatusRequest) GetContainerId

func (m *ContainerStatusRequest) GetContainerId() string

func (*ContainerStatusRequest) GetVerbose

func (m *ContainerStatusRequest) GetVerbose() bool

func (*ContainerStatusRequest) Marshal

func (m *ContainerStatusRequest) Marshal() (dAtA []byte, err error)

func (*ContainerStatusRequest) MarshalTo

func (m *ContainerStatusRequest) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStatusRequest) MarshalToSizedBuffer

func (m *ContainerStatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStatusRequest) ProtoMessage

func (*ContainerStatusRequest) ProtoMessage()

func (*ContainerStatusRequest) Reset

func (m *ContainerStatusRequest) Reset()

func (*ContainerStatusRequest) Size

func (m *ContainerStatusRequest) Size() (n int)

func (*ContainerStatusRequest) String

func (this *ContainerStatusRequest) String() string

func (*ContainerStatusRequest) Unmarshal

func (m *ContainerStatusRequest) Unmarshal(dAtA []byte) error

func (*ContainerStatusRequest) XXX_DiscardUnknown

func (m *ContainerStatusRequest) XXX_DiscardUnknown()

func (*ContainerStatusRequest) XXX_Marshal

func (m *ContainerStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStatusRequest) XXX_Merge

func (m *ContainerStatusRequest) XXX_Merge(src proto.Message)

func (*ContainerStatusRequest) XXX_Size

func (m *ContainerStatusRequest) XXX_Size() int

func (*ContainerStatusRequest) XXX_Unmarshal

func (m *ContainerStatusRequest) XXX_Unmarshal(b []byte) error

type ContainerStatusResponse

type ContainerStatusResponse struct {
	// Status of the container.
	Status *ContainerStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	// Info is extra information of the Container. The key could be arbitrary string, and
	// value should be in json format. The information could include anything useful for
	// debug, e.g. pid for linux container based container runtime.
	// It should only be returned non-empty when Verbose is true.
	Info                 map[string]string `` /* 149-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ContainerStatusResponse) Descriptor

func (*ContainerStatusResponse) Descriptor() ([]byte, []int)

func (*ContainerStatusResponse) GetInfo

func (m *ContainerStatusResponse) GetInfo() map[string]string

func (*ContainerStatusResponse) GetStatus

func (m *ContainerStatusResponse) GetStatus() *ContainerStatus

func (*ContainerStatusResponse) Marshal

func (m *ContainerStatusResponse) Marshal() (dAtA []byte, err error)

func (*ContainerStatusResponse) MarshalTo

func (m *ContainerStatusResponse) MarshalTo(dAtA []byte) (int, error)

func (*ContainerStatusResponse) MarshalToSizedBuffer

func (m *ContainerStatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ContainerStatusResponse) ProtoMessage

func (*ContainerStatusResponse) ProtoMessage()

func (*ContainerStatusResponse) Reset

func (m *ContainerStatusResponse) Reset()

func (*ContainerStatusResponse) Size

func (m *ContainerStatusResponse) Size() (n int)

func (*ContainerStatusResponse) String

func (this *ContainerStatusResponse) String() string

func (*ContainerStatusResponse) Unmarshal

func (m *ContainerStatusResponse) Unmarshal(dAtA []byte) error

func (*ContainerStatusResponse) XXX_DiscardUnknown

func (m *ContainerStatusResponse) XXX_DiscardUnknown()

func (*ContainerStatusResponse) XXX_Marshal

func (m *ContainerStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerStatusResponse) XXX_Merge

func (m *ContainerStatusResponse) XXX_Merge(src proto.Message)

func (*ContainerStatusResponse) XXX_Size

func (m *ContainerStatusResponse) XXX_Size() int

func (*ContainerStatusResponse) XXX_Unmarshal

func (m *ContainerStatusResponse) XXX_Unmarshal(b []byte) error

type CpuUsage

type CpuUsage struct {
	// Timestamp in nanoseconds at which the information were collected. Must be > 0.
	Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// Cumulative CPU usage (sum across all cores) since object creation.
	UsageCoreNanoSeconds *UInt64Value `protobuf:"bytes,2,opt,name=usage_core_nano_seconds,json=usageCoreNanoSeconds,proto3" json:"usage_core_nano_seconds,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

CpuUsage provides the CPU usage information.

func (*CpuUsage) Descriptor

func (*CpuUsage) Descriptor() ([]byte, []int)

func (*CpuUsage) GetTimestamp

func (m *CpuUsage) GetTimestamp() int64

func (*CpuUsage) GetUsageCoreNanoSeconds

func (m *CpuUsage) GetUsageCoreNanoSeconds() *UInt64Value

func (*CpuUsage) Marshal

func (m *CpuUsage) Marshal() (dAtA []byte, err error)

func (*CpuUsage) MarshalTo

func (m *CpuUsage) MarshalTo(dAtA []byte) (int, error)

func (*CpuUsage) MarshalToSizedBuffer

func (m *CpuUsage) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CpuUsage) ProtoMessage

func (*CpuUsage) ProtoMessage()

func (*CpuUsage) Reset

func (m *CpuUsage) Reset()

func (*CpuUsage) Size

func (m *CpuUsage) Size() (n int)

func (*CpuUsage) String

func (this *CpuUsage) String() string

func (*CpuUsage) Unmarshal

func (m *CpuUsage) Unmarshal(dAtA []byte) error

func (*CpuUsage) XXX_DiscardUnknown

func (m *CpuUsage) XXX_DiscardUnknown()

func (*CpuUsage) XXX_Marshal

func (m *CpuUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CpuUsage) XXX_Merge

func (m *CpuUsage) XXX_Merge(src proto.Message)

func (*CpuUsage) XXX_Size

func (m *CpuUsage) XXX_Size() int

func (*CpuUsage) XXX_Unmarshal

func (m *CpuUsage) XXX_Unmarshal(b []byte) error

type CreateContainerRequest

type CreateContainerRequest struct {
	// ID of the PodSandbox in which the container should be created.
	PodSandboxId string `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	// Config of the container.
	Config *ContainerConfig `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	// Config of the PodSandbox. This is the same config that was passed
	// to RunPodSandboxRequest to create the PodSandbox. It is passed again
	// here just for easy reference. The PodSandboxConfig is immutable and
	// remains the same throughout the lifetime of the pod.
	SandboxConfig        *PodSandboxConfig `protobuf:"bytes,3,opt,name=sandbox_config,json=sandboxConfig,proto3" json:"sandbox_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*CreateContainerRequest) Descriptor

func (*CreateContainerRequest) Descriptor() ([]byte, []int)

func (*CreateContainerRequest) GetConfig

func (m *CreateContainerRequest) GetConfig() *ContainerConfig

func (*CreateContainerRequest) GetPodSandboxId

func (m *CreateContainerRequest) GetPodSandboxId() string

func (*CreateContainerRequest) GetSandboxConfig

func (m *CreateContainerRequest) GetSandboxConfig() *PodSandboxConfig

func (*CreateContainerRequest) Marshal

func (m *CreateContainerRequest) Marshal() (dAtA []byte, err error)

func (*CreateContainerRequest) MarshalTo

func (m *CreateContainerRequest) MarshalTo(dAtA []byte) (int, error)

func (*CreateContainerRequest) MarshalToSizedBuffer

func (m *CreateContainerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateContainerRequest) ProtoMessage

func (*CreateContainerRequest) ProtoMessage()

func (*CreateContainerRequest) Reset

func (m *CreateContainerRequest) Reset()

func (*CreateContainerRequest) Size

func (m *CreateContainerRequest) Size() (n int)

func (*CreateContainerRequest) String

func (this *CreateContainerRequest) String() string

func (*CreateContainerRequest) Unmarshal

func (m *CreateContainerRequest) Unmarshal(dAtA []byte) error

func (*CreateContainerRequest) XXX_DiscardUnknown

func (m *CreateContainerRequest) XXX_DiscardUnknown()

func (*CreateContainerRequest) XXX_Marshal

func (m *CreateContainerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateContainerRequest) XXX_Merge

func (m *CreateContainerRequest) XXX_Merge(src proto.Message)

func (*CreateContainerRequest) XXX_Size

func (m *CreateContainerRequest) XXX_Size() int

func (*CreateContainerRequest) XXX_Unmarshal

func (m *CreateContainerRequest) XXX_Unmarshal(b []byte) error

type CreateContainerResponse

type CreateContainerResponse struct {
	// ID of the created container.
	ContainerId          string   `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateContainerResponse) Descriptor

func (*CreateContainerResponse) Descriptor() ([]byte, []int)

func (*CreateContainerResponse) GetContainerId

func (m *CreateContainerResponse) GetContainerId() string

func (*CreateContainerResponse) Marshal

func (m *CreateContainerResponse) Marshal() (dAtA []byte, err error)

func (*CreateContainerResponse) MarshalTo

func (m *CreateContainerResponse) MarshalTo(dAtA []byte) (int, error)

func (*CreateContainerResponse) MarshalToSizedBuffer

func (m *CreateContainerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CreateContainerResponse) ProtoMessage

func (*CreateContainerResponse) ProtoMessage()

func (*CreateContainerResponse) Reset

func (m *CreateContainerResponse) Reset()

func (*CreateContainerResponse) Size

func (m *CreateContainerResponse) Size() (n int)

func (*CreateContainerResponse) String

func (this *CreateContainerResponse) String() string

func (*CreateContainerResponse) Unmarshal

func (m *CreateContainerResponse) Unmarshal(dAtA []byte) error

func (*CreateContainerResponse) XXX_DiscardUnknown

func (m *CreateContainerResponse) XXX_DiscardUnknown()

func (*CreateContainerResponse) XXX_Marshal

func (m *CreateContainerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateContainerResponse) XXX_Merge

func (m *CreateContainerResponse) XXX_Merge(src proto.Message)

func (*CreateContainerResponse) XXX_Size

func (m *CreateContainerResponse) XXX_Size() int

func (*CreateContainerResponse) XXX_Unmarshal

func (m *CreateContainerResponse) XXX_Unmarshal(b []byte) error

type DNSConfig

type DNSConfig struct {
	// List of DNS servers of the cluster.
	Servers []string `protobuf:"bytes,1,rep,name=servers,proto3" json:"servers,omitempty"`
	// List of DNS search domains of the cluster.
	Searches []string `protobuf:"bytes,2,rep,name=searches,proto3" json:"searches,omitempty"`
	// List of DNS options. See https://linux.die.net/man/5/resolv.conf
	// for all available options.
	Options              []string `protobuf:"bytes,3,rep,name=options,proto3" json:"options,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

DNSConfig specifies the DNS servers and search domains of a sandbox.

func (*DNSConfig) Descriptor

func (*DNSConfig) Descriptor() ([]byte, []int)

func (*DNSConfig) GetOptions

func (m *DNSConfig) GetOptions() []string

func (*DNSConfig) GetSearches

func (m *DNSConfig) GetSearches() []string

func (*DNSConfig) GetServers

func (m *DNSConfig) GetServers() []string

func (*DNSConfig) Marshal

func (m *DNSConfig) Marshal() (dAtA []byte, err error)

func (*DNSConfig) MarshalTo

func (m *DNSConfig) MarshalTo(dAtA []byte) (int, error)

func (*DNSConfig) MarshalToSizedBuffer

func (m *DNSConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DNSConfig) ProtoMessage

func (*DNSConfig) ProtoMessage()

func (*DNSConfig) Reset

func (m *DNSConfig) Reset()

func (*DNSConfig) Size

func (m *DNSConfig) Size() (n int)

func (*DNSConfig) String

func (this *DNSConfig) String() string

func (*DNSConfig) Unmarshal

func (m *DNSConfig) Unmarshal(dAtA []byte) error

func (*DNSConfig) XXX_DiscardUnknown

func (m *DNSConfig) XXX_DiscardUnknown()

func (*DNSConfig) XXX_Marshal

func (m *DNSConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DNSConfig) XXX_Merge

func (m *DNSConfig) XXX_Merge(src proto.Message)

func (*DNSConfig) XXX_Size

func (m *DNSConfig) XXX_Size() int

func (*DNSConfig) XXX_Unmarshal

func (m *DNSConfig) XXX_Unmarshal(b []byte) error

type Device

type Device struct {
	// Path of the device within the container.
	ContainerPath string `protobuf:"bytes,1,opt,name=container_path,json=containerPath,proto3" json:"container_path,omitempty"`
	// Path of the device on the host.
	HostPath string `protobuf:"bytes,2,opt,name=host_path,json=hostPath,proto3" json:"host_path,omitempty"`
	// Cgroups permissions of the device, candidates are one or more of
	// * r - allows container to read from the specified device.
	// * w - allows container to write to the specified device.
	// * m - allows container to create device files that do not yet exist.
	Permissions          string   `protobuf:"bytes,3,opt,name=permissions,proto3" json:"permissions,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Device specifies a host device to mount into a container.

func (*Device) Descriptor

func (*Device) Descriptor() ([]byte, []int)

func (*Device) GetContainerPath

func (m *Device) GetContainerPath() string

func (*Device) GetHostPath

func (m *Device) GetHostPath() string

func (*Device) GetPermissions

func (m *Device) GetPermissions() string

func (*Device) Marshal

func (m *Device) Marshal() (dAtA []byte, err error)

func (*Device) MarshalTo

func (m *Device) MarshalTo(dAtA []byte) (int, error)

func (*Device) MarshalToSizedBuffer

func (m *Device) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Device) ProtoMessage

func (*Device) ProtoMessage()

func (*Device) Reset

func (m *Device) Reset()

func (*Device) Size

func (m *Device) Size() (n int)

func (*Device) String

func (this *Device) String() string

func (*Device) Unmarshal

func (m *Device) Unmarshal(dAtA []byte) error

func (*Device) XXX_DiscardUnknown

func (m *Device) XXX_DiscardUnknown()

func (*Device) XXX_Marshal

func (m *Device) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Device) XXX_Merge

func (m *Device) XXX_Merge(src proto.Message)

func (*Device) XXX_Size

func (m *Device) XXX_Size() int

func (*Device) XXX_Unmarshal

func (m *Device) XXX_Unmarshal(b []byte) error

type ExecRequest

type ExecRequest struct {
	// ID of the container in which to execute the command.
	ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	// Command to execute.
	Cmd []string `protobuf:"bytes,2,rep,name=cmd,proto3" json:"cmd,omitempty"`
	// Whether to exec the command in a TTY.
	Tty bool `protobuf:"varint,3,opt,name=tty,proto3" json:"tty,omitempty"`
	// Whether to stream stdin.
	// One of `stdin`, `stdout`, and `stderr` MUST be true.
	Stdin bool `protobuf:"varint,4,opt,name=stdin,proto3" json:"stdin,omitempty"`
	// Whether to stream stdout.
	// One of `stdin`, `stdout`, and `stderr` MUST be true.
	Stdout bool `protobuf:"varint,5,opt,name=stdout,proto3" json:"stdout,omitempty"`
	// Whether to stream stderr.
	// One of `stdin`, `stdout`, and `stderr` MUST be true.
	// If `tty` is true, `stderr` MUST be false. Multiplexing is not supported
	// in this case. The output of stdout and stderr will be combined to a
	// single stream.
	Stderr               bool     `protobuf:"varint,6,opt,name=stderr,proto3" json:"stderr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ExecRequest) Descriptor

func (*ExecRequest) Descriptor() ([]byte, []int)

func (*ExecRequest) GetCmd

func (m *ExecRequest) GetCmd() []string

func (*ExecRequest) GetContainerId

func (m *ExecRequest) GetContainerId() string

func (*ExecRequest) GetStderr

func (m *ExecRequest) GetStderr() bool

func (*ExecRequest) GetStdin

func (m *ExecRequest) GetStdin() bool

func (*ExecRequest) GetStdout

func (m *ExecRequest) GetStdout() bool

func (*ExecRequest) GetTty

func (m *ExecRequest) GetTty() bool

func (*ExecRequest) Marshal

func (m *ExecRequest) Marshal() (dAtA []byte, err error)

func (*ExecRequest) MarshalTo

func (m *ExecRequest) MarshalTo(dAtA []byte) (int, error)

func (*ExecRequest) MarshalToSizedBuffer

func (m *ExecRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExecRequest) ProtoMessage

func (*ExecRequest) ProtoMessage()

func (*ExecRequest) Reset

func (m *ExecRequest) Reset()

func (*ExecRequest) Size

func (m *ExecRequest) Size() (n int)

func (*ExecRequest) String

func (this *ExecRequest) String() string

func (*ExecRequest) Unmarshal

func (m *ExecRequest) Unmarshal(dAtA []byte) error

func (*ExecRequest) XXX_DiscardUnknown

func (m *ExecRequest) XXX_DiscardUnknown()

func (*ExecRequest) XXX_Marshal

func (m *ExecRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecRequest) XXX_Merge

func (m *ExecRequest) XXX_Merge(src proto.Message)

func (*ExecRequest) XXX_Size

func (m *ExecRequest) XXX_Size() int

func (*ExecRequest) XXX_Unmarshal

func (m *ExecRequest) XXX_Unmarshal(b []byte) error

type ExecResponse

type ExecResponse struct {
	// Fully qualified URL of the exec streaming server.
	Url                  string   `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ExecResponse) Descriptor

func (*ExecResponse) Descriptor() ([]byte, []int)

func (*ExecResponse) GetUrl

func (m *ExecResponse) GetUrl() string

func (*ExecResponse) Marshal

func (m *ExecResponse) Marshal() (dAtA []byte, err error)

func (*ExecResponse) MarshalTo

func (m *ExecResponse) MarshalTo(dAtA []byte) (int, error)

func (*ExecResponse) MarshalToSizedBuffer

func (m *ExecResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExecResponse) ProtoMessage

func (*ExecResponse) ProtoMessage()

func (*ExecResponse) Reset

func (m *ExecResponse) Reset()

func (*ExecResponse) Size

func (m *ExecResponse) Size() (n int)

func (*ExecResponse) String

func (this *ExecResponse) String() string

func (*ExecResponse) Unmarshal

func (m *ExecResponse) Unmarshal(dAtA []byte) error

func (*ExecResponse) XXX_DiscardUnknown

func (m *ExecResponse) XXX_DiscardUnknown()

func (*ExecResponse) XXX_Marshal

func (m *ExecResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecResponse) XXX_Merge

func (m *ExecResponse) XXX_Merge(src proto.Message)

func (*ExecResponse) XXX_Size

func (m *ExecResponse) XXX_Size() int

func (*ExecResponse) XXX_Unmarshal

func (m *ExecResponse) XXX_Unmarshal(b []byte) error

type ExecSyncRequest

type ExecSyncRequest struct {
	// ID of the container.
	ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	// Command to execute.
	Cmd []string `protobuf:"bytes,2,rep,name=cmd,proto3" json:"cmd,omitempty"`
	// Timeout in seconds to stop the command. Default: 0 (run forever).
	Timeout              int64    `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ExecSyncRequest) Descriptor

func (*ExecSyncRequest) Descriptor() ([]byte, []int)

func (*ExecSyncRequest) GetCmd

func (m *ExecSyncRequest) GetCmd() []string

func (*ExecSyncRequest) GetContainerId

func (m *ExecSyncRequest) GetContainerId() string

func (*ExecSyncRequest) GetTimeout

func (m *ExecSyncRequest) GetTimeout() int64

func (*ExecSyncRequest) Marshal

func (m *ExecSyncRequest) Marshal() (dAtA []byte, err error)

func (*ExecSyncRequest) MarshalTo

func (m *ExecSyncRequest) MarshalTo(dAtA []byte) (int, error)

func (*ExecSyncRequest) MarshalToSizedBuffer

func (m *ExecSyncRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExecSyncRequest) ProtoMessage

func (*ExecSyncRequest) ProtoMessage()

func (*ExecSyncRequest) Reset

func (m *ExecSyncRequest) Reset()

func (*ExecSyncRequest) Size

func (m *ExecSyncRequest) Size() (n int)

func (*ExecSyncRequest) String

func (this *ExecSyncRequest) String() string

func (*ExecSyncRequest) Unmarshal

func (m *ExecSyncRequest) Unmarshal(dAtA []byte) error

func (*ExecSyncRequest) XXX_DiscardUnknown

func (m *ExecSyncRequest) XXX_DiscardUnknown()

func (*ExecSyncRequest) XXX_Marshal

func (m *ExecSyncRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecSyncRequest) XXX_Merge

func (m *ExecSyncRequest) XXX_Merge(src proto.Message)

func (*ExecSyncRequest) XXX_Size

func (m *ExecSyncRequest) XXX_Size() int

func (*ExecSyncRequest) XXX_Unmarshal

func (m *ExecSyncRequest) XXX_Unmarshal(b []byte) error

type ExecSyncResponse

type ExecSyncResponse struct {
	// Captured command stdout output.
	Stdout []byte `protobuf:"bytes,1,opt,name=stdout,proto3" json:"stdout,omitempty"`
	// Captured command stderr output.
	Stderr []byte `protobuf:"bytes,2,opt,name=stderr,proto3" json:"stderr,omitempty"`
	// Exit code the command finished with. Default: 0 (success).
	ExitCode             int32    `protobuf:"varint,3,opt,name=exit_code,json=exitCode,proto3" json:"exit_code,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ExecSyncResponse) Descriptor

func (*ExecSyncResponse) Descriptor() ([]byte, []int)

func (*ExecSyncResponse) GetExitCode

func (m *ExecSyncResponse) GetExitCode() int32

func (*ExecSyncResponse) GetStderr

func (m *ExecSyncResponse) GetStderr() []byte

func (*ExecSyncResponse) GetStdout

func (m *ExecSyncResponse) GetStdout() []byte

func (*ExecSyncResponse) Marshal

func (m *ExecSyncResponse) Marshal() (dAtA []byte, err error)

func (*ExecSyncResponse) MarshalTo

func (m *ExecSyncResponse) MarshalTo(dAtA []byte) (int, error)

func (*ExecSyncResponse) MarshalToSizedBuffer

func (m *ExecSyncResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ExecSyncResponse) ProtoMessage

func (*ExecSyncResponse) ProtoMessage()

func (*ExecSyncResponse) Reset

func (m *ExecSyncResponse) Reset()

func (*ExecSyncResponse) Size

func (m *ExecSyncResponse) Size() (n int)

func (*ExecSyncResponse) String

func (this *ExecSyncResponse) String() string

func (*ExecSyncResponse) Unmarshal

func (m *ExecSyncResponse) Unmarshal(dAtA []byte) error

func (*ExecSyncResponse) XXX_DiscardUnknown

func (m *ExecSyncResponse) XXX_DiscardUnknown()

func (*ExecSyncResponse) XXX_Marshal

func (m *ExecSyncResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecSyncResponse) XXX_Merge

func (m *ExecSyncResponse) XXX_Merge(src proto.Message)

func (*ExecSyncResponse) XXX_Size

func (m *ExecSyncResponse) XXX_Size() int

func (*ExecSyncResponse) XXX_Unmarshal

func (m *ExecSyncResponse) XXX_Unmarshal(b []byte) error

type FilesystemIdentifier

type FilesystemIdentifier struct {
	// Mountpoint of a filesystem.
	Mountpoint           string   `protobuf:"bytes,1,opt,name=mountpoint,proto3" json:"mountpoint,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

FilesystemIdentifier uniquely identify the filesystem.

func (*FilesystemIdentifier) Descriptor

func (*FilesystemIdentifier) Descriptor() ([]byte, []int)

func (*FilesystemIdentifier) GetMountpoint

func (m *FilesystemIdentifier) GetMountpoint() string

func (*FilesystemIdentifier) Marshal

func (m *FilesystemIdentifier) Marshal() (dAtA []byte, err error)

func (*FilesystemIdentifier) MarshalTo

func (m *FilesystemIdentifier) MarshalTo(dAtA []byte) (int, error)

func (*FilesystemIdentifier) MarshalToSizedBuffer

func (m *FilesystemIdentifier) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*FilesystemIdentifier) ProtoMessage

func (*FilesystemIdentifier) ProtoMessage()

func (*FilesystemIdentifier) Reset

func (m *FilesystemIdentifier) Reset()

func (*FilesystemIdentifier) Size

func (m *FilesystemIdentifier) Size() (n int)

func (*FilesystemIdentifier) String

func (this *FilesystemIdentifier) String() string

func (*FilesystemIdentifier) Unmarshal

func (m *FilesystemIdentifier) Unmarshal(dAtA []byte) error

func (*FilesystemIdentifier) XXX_DiscardUnknown

func (m *FilesystemIdentifier) XXX_DiscardUnknown()

func (*FilesystemIdentifier) XXX_Marshal

func (m *FilesystemIdentifier) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FilesystemIdentifier) XXX_Merge

func (m *FilesystemIdentifier) XXX_Merge(src proto.Message)

func (*FilesystemIdentifier) XXX_Size

func (m *FilesystemIdentifier) XXX_Size() int

func (*FilesystemIdentifier) XXX_Unmarshal

func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error

type FilesystemUsage

type FilesystemUsage struct {
	// Timestamp in nanoseconds at which the information were collected. Must be > 0.
	Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// The unique identifier of the filesystem.
	FsId *FilesystemIdentifier `protobuf:"bytes,2,opt,name=fs_id,json=fsId,proto3" json:"fs_id,omitempty"`
	// UsedBytes represents the bytes used for images on the filesystem.
	// This may differ from the total bytes used on the filesystem and may not
	// equal CapacityBytes - AvailableBytes.
	UsedBytes *UInt64Value `protobuf:"bytes,3,opt,name=used_bytes,json=usedBytes,proto3" json:"used_bytes,omitempty"`
	// InodesUsed represents the inodes used by the images.
	// This may not equal InodesCapacity - InodesAvailable because the underlying
	// filesystem may also be used for purposes other than storing images.
	InodesUsed           *UInt64Value `protobuf:"bytes,4,opt,name=inodes_used,json=inodesUsed,proto3" json:"inodes_used,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

FilesystemUsage provides the filesystem usage information.

func (*FilesystemUsage) Descriptor

func (*FilesystemUsage) Descriptor() ([]byte, []int)

func (*FilesystemUsage) GetFsId

func (m *FilesystemUsage) GetFsId() *FilesystemIdentifier

func (*FilesystemUsage) GetInodesUsed

func (m *FilesystemUsage) GetInodesUsed() *UInt64Value

func (*FilesystemUsage) GetTimestamp

func (m *FilesystemUsage) GetTimestamp() int64

func (*FilesystemUsage) GetUsedBytes

func (m *FilesystemUsage) GetUsedBytes() *UInt64Value

func (*FilesystemUsage) Marshal

func (m *FilesystemUsage) Marshal() (dAtA []byte, err error)

func (*FilesystemUsage) MarshalTo

func (m *FilesystemUsage) MarshalTo(dAtA []byte) (int, error)

func (*FilesystemUsage) MarshalToSizedBuffer

func (m *FilesystemUsage) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*FilesystemUsage) ProtoMessage

func (*FilesystemUsage) ProtoMessage()

func (*FilesystemUsage) Reset

func (m *FilesystemUsage) Reset()

func (*FilesystemUsage) Size

func (m *FilesystemUsage) Size() (n int)

func (*FilesystemUsage) String

func (this *FilesystemUsage) String() string

func (*FilesystemUsage) Unmarshal

func (m *FilesystemUsage) Unmarshal(dAtA []byte) error

func (*FilesystemUsage) XXX_DiscardUnknown

func (m *FilesystemUsage) XXX_DiscardUnknown()

func (*FilesystemUsage) XXX_Marshal

func (m *FilesystemUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FilesystemUsage) XXX_Merge

func (m *FilesystemUsage) XXX_Merge(src proto.Message)

func (*FilesystemUsage) XXX_Size

func (m *FilesystemUsage) XXX_Size() int

func (*FilesystemUsage) XXX_Unmarshal

func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error

type HugepageLimit

type HugepageLimit struct {
	// The value of PageSize has the format <size><unit-prefix>B (2MB, 1GB),
	// and must match the <hugepagesize> of the corresponding control file found in `hugetlb.<hugepagesize>.limit_in_bytes`.
	// The values of <unit-prefix> are intended to be parsed using base 1024("1KB" = 1024, "1MB" = 1048576, etc).
	PageSize string `protobuf:"bytes,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// limit in bytes of hugepagesize HugeTLB usage.
	Limit                uint64   `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

HugepageLimit corresponds to the file`hugetlb.<hugepagesize>.limit_in_byte` in container level cgroup. For example, `PageSize=1GB`, `Limit=1073741824` means setting `1073741824` bytes to hugetlb.1GB.limit_in_bytes.

func (*HugepageLimit) Descriptor

func (*HugepageLimit) Descriptor() ([]byte, []int)

func (*HugepageLimit) GetLimit

func (m *HugepageLimit) GetLimit() uint64

func (*HugepageLimit) GetPageSize

func (m *HugepageLimit) GetPageSize() string

func (*HugepageLimit) Marshal

func (m *HugepageLimit) Marshal() (dAtA []byte, err error)

func (*HugepageLimit) MarshalTo

func (m *HugepageLimit) MarshalTo(dAtA []byte) (int, error)

func (*HugepageLimit) MarshalToSizedBuffer

func (m *HugepageLimit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*HugepageLimit) ProtoMessage

func (*HugepageLimit) ProtoMessage()

func (*HugepageLimit) Reset

func (m *HugepageLimit) Reset()

func (*HugepageLimit) Size

func (m *HugepageLimit) Size() (n int)

func (*HugepageLimit) String

func (this *HugepageLimit) String() string

func (*HugepageLimit) Unmarshal

func (m *HugepageLimit) Unmarshal(dAtA []byte) error

func (*HugepageLimit) XXX_DiscardUnknown

func (m *HugepageLimit) XXX_DiscardUnknown()

func (*HugepageLimit) XXX_Marshal

func (m *HugepageLimit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HugepageLimit) XXX_Merge

func (m *HugepageLimit) XXX_Merge(src proto.Message)

func (*HugepageLimit) XXX_Size

func (m *HugepageLimit) XXX_Size() int

func (*HugepageLimit) XXX_Unmarshal

func (m *HugepageLimit) XXX_Unmarshal(b []byte) error

type Image

type Image struct {
	// ID of the image.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Other names by which this image is known.
	RepoTags []string `protobuf:"bytes,2,rep,name=repo_tags,json=repoTags,proto3" json:"repo_tags,omitempty"`
	// Digests by which this image is known.
	RepoDigests []string `protobuf:"bytes,3,rep,name=repo_digests,json=repoDigests,proto3" json:"repo_digests,omitempty"`
	// Size of the image in bytes. Must be > 0.
	Size_ uint64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	// UID that will run the command(s). This is used as a default if no user is
	// specified when creating the container. UID and the following user name
	// are mutually exclusive.
	Uid *Int64Value `protobuf:"bytes,5,opt,name=uid,proto3" json:"uid,omitempty"`
	// User name that will run the command(s). This is used if UID is not set
	// and no user is specified when creating container.
	Username string `protobuf:"bytes,6,opt,name=username,proto3" json:"username,omitempty"`
	// ImageSpec for image which includes annotations
	Spec                 *ImageSpec `protobuf:"bytes,7,opt,name=spec,proto3" json:"spec,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

Basic information about a container image.

func (*Image) Descriptor

func (*Image) Descriptor() ([]byte, []int)

func (*Image) GetId

func (m *Image) GetId() string

func (*Image) GetRepoDigests

func (m *Image) GetRepoDigests() []string

func (*Image) GetRepoTags

func (m *Image) GetRepoTags() []string

func (*Image) GetSize_

func (m *Image) GetSize_() uint64

func (*Image) GetSpec

func (m *Image) GetSpec() *ImageSpec

func (*Image) GetUid

func (m *Image) GetUid() *Int64Value

func (*Image) GetUsername

func (m *Image) GetUsername() string

func (*Image) Marshal

func (m *Image) Marshal() (dAtA []byte, err error)

func (*Image) MarshalTo

func (m *Image) MarshalTo(dAtA []byte) (int, error)

func (*Image) MarshalToSizedBuffer

func (m *Image) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Image) ProtoMessage

func (*Image) ProtoMessage()

func (*Image) Reset

func (m *Image) Reset()

func (*Image) Size

func (m *Image) Size() (n int)

func (*Image) String

func (this *Image) String() string

func (*Image) Unmarshal

func (m *Image) Unmarshal(dAtA []byte) error

func (*Image) XXX_DiscardUnknown

func (m *Image) XXX_DiscardUnknown()

func (*Image) XXX_Marshal

func (m *Image) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Image) XXX_Merge

func (m *Image) XXX_Merge(src proto.Message)

func (*Image) XXX_Size

func (m *Image) XXX_Size() int

func (*Image) XXX_Unmarshal

func (m *Image) XXX_Unmarshal(b []byte) error

type ImageFilter

type ImageFilter struct {
	// Spec of the image.
	Image                *ImageSpec `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*ImageFilter) Descriptor

func (*ImageFilter) Descriptor() ([]byte, []int)

func (*ImageFilter) GetImage

func (m *ImageFilter) GetImage() *ImageSpec

func (*ImageFilter) Marshal

func (m *ImageFilter) Marshal() (dAtA []byte, err error)

func (*ImageFilter) MarshalTo

func (m *ImageFilter) MarshalTo(dAtA []byte) (int, error)

func (*ImageFilter) MarshalToSizedBuffer

func (m *ImageFilter) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageFilter) ProtoMessage

func (*ImageFilter) ProtoMessage()

func (*ImageFilter) Reset

func (m *ImageFilter) Reset()

func (*ImageFilter) Size

func (m *ImageFilter) Size() (n int)

func (*ImageFilter) String

func (this *ImageFilter) String() string

func (*ImageFilter) Unmarshal

func (m *ImageFilter) Unmarshal(dAtA []byte) error

func (*ImageFilter) XXX_DiscardUnknown

func (m *ImageFilter) XXX_DiscardUnknown()

func (*ImageFilter) XXX_Marshal

func (m *ImageFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageFilter) XXX_Merge

func (m *ImageFilter) XXX_Merge(src proto.Message)

func (*ImageFilter) XXX_Size

func (m *ImageFilter) XXX_Size() int

func (*ImageFilter) XXX_Unmarshal

func (m *ImageFilter) XXX_Unmarshal(b []byte) error

type ImageFsInfoRequest

type ImageFsInfoRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ImageFsInfoRequest) Descriptor

func (*ImageFsInfoRequest) Descriptor() ([]byte, []int)

func (*ImageFsInfoRequest) Marshal

func (m *ImageFsInfoRequest) Marshal() (dAtA []byte, err error)

func (*ImageFsInfoRequest) MarshalTo

func (m *ImageFsInfoRequest) MarshalTo(dAtA []byte) (int, error)

func (*ImageFsInfoRequest) MarshalToSizedBuffer

func (m *ImageFsInfoRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageFsInfoRequest) ProtoMessage

func (*ImageFsInfoRequest) ProtoMessage()

func (*ImageFsInfoRequest) Reset

func (m *ImageFsInfoRequest) Reset()

func (*ImageFsInfoRequest) Size

func (m *ImageFsInfoRequest) Size() (n int)

func (*ImageFsInfoRequest) String

func (this *ImageFsInfoRequest) String() string

func (*ImageFsInfoRequest) Unmarshal

func (m *ImageFsInfoRequest) Unmarshal(dAtA []byte) error

func (*ImageFsInfoRequest) XXX_DiscardUnknown

func (m *ImageFsInfoRequest) XXX_DiscardUnknown()

func (*ImageFsInfoRequest) XXX_Marshal

func (m *ImageFsInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageFsInfoRequest) XXX_Merge

func (m *ImageFsInfoRequest) XXX_Merge(src proto.Message)

func (*ImageFsInfoRequest) XXX_Size

func (m *ImageFsInfoRequest) XXX_Size() int

func (*ImageFsInfoRequest) XXX_Unmarshal

func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error

type ImageFsInfoResponse

type ImageFsInfoResponse struct {
	// Information of image filesystem(s).
	ImageFilesystems     []*FilesystemUsage `protobuf:"bytes,1,rep,name=image_filesystems,json=imageFilesystems,proto3" json:"image_filesystems,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*ImageFsInfoResponse) Descriptor

func (*ImageFsInfoResponse) Descriptor() ([]byte, []int)

func (*ImageFsInfoResponse) GetImageFilesystems

func (m *ImageFsInfoResponse) GetImageFilesystems() []*FilesystemUsage

func (*ImageFsInfoResponse) Marshal

func (m *ImageFsInfoResponse) Marshal() (dAtA []byte, err error)

func (*ImageFsInfoResponse) MarshalTo

func (m *ImageFsInfoResponse) MarshalTo(dAtA []byte) (int, error)

func (*ImageFsInfoResponse) MarshalToSizedBuffer

func (m *ImageFsInfoResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageFsInfoResponse) ProtoMessage

func (*ImageFsInfoResponse) ProtoMessage()

func (*ImageFsInfoResponse) Reset

func (m *ImageFsInfoResponse) Reset()

func (*ImageFsInfoResponse) Size

func (m *ImageFsInfoResponse) Size() (n int)

func (*ImageFsInfoResponse) String

func (this *ImageFsInfoResponse) String() string

func (*ImageFsInfoResponse) Unmarshal

func (m *ImageFsInfoResponse) Unmarshal(dAtA []byte) error

func (*ImageFsInfoResponse) XXX_DiscardUnknown

func (m *ImageFsInfoResponse) XXX_DiscardUnknown()

func (*ImageFsInfoResponse) XXX_Marshal

func (m *ImageFsInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageFsInfoResponse) XXX_Merge

func (m *ImageFsInfoResponse) XXX_Merge(src proto.Message)

func (*ImageFsInfoResponse) XXX_Size

func (m *ImageFsInfoResponse) XXX_Size() int

func (*ImageFsInfoResponse) XXX_Unmarshal

func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error

type ImageServiceClient

type ImageServiceClient interface {
	// ListImages lists existing images.
	ListImages(ctx context.Context, in *ListImagesRequest, opts ...grpc.CallOption) (*ListImagesResponse, error)
	// ImageStatus returns the status of the image. If the image is not
	// present, returns a response with ImageStatusResponse.Image set to
	// nil.
	ImageStatus(ctx context.Context, in *ImageStatusRequest, opts ...grpc.CallOption) (*ImageStatusResponse, error)
	// PullImage pulls an image with authentication config.
	PullImage(ctx context.Context, in *PullImageRequest, opts ...grpc.CallOption) (*PullImageResponse, error)
	// RemoveImage removes the image.
	// This call is idempotent, and must not return an error if the image has
	// already been removed.
	RemoveImage(ctx context.Context, in *RemoveImageRequest, opts ...grpc.CallOption) (*RemoveImageResponse, error)
	// ImageFSInfo returns information of the filesystem that is used to store images.
	ImageFsInfo(ctx context.Context, in *ImageFsInfoRequest, opts ...grpc.CallOption) (*ImageFsInfoResponse, error)
}

ImageServiceClient is the client API for ImageService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewImageServiceClient

func NewImageServiceClient(cc *grpc.ClientConn) ImageServiceClient

type ImageServiceServer

type ImageServiceServer interface {
	// ListImages lists existing images.
	ListImages(context.Context, *ListImagesRequest) (*ListImagesResponse, error)
	// ImageStatus returns the status of the image. If the image is not
	// present, returns a response with ImageStatusResponse.Image set to
	// nil.
	ImageStatus(context.Context, *ImageStatusRequest) (*ImageStatusResponse, error)
	// PullImage pulls an image with authentication config.
	PullImage(context.Context, *PullImageRequest) (*PullImageResponse, error)
	// RemoveImage removes the image.
	// This call is idempotent, and must not return an error if the image has
	// already been removed.
	RemoveImage(context.Context, *RemoveImageRequest) (*RemoveImageResponse, error)
	// ImageFSInfo returns information of the filesystem that is used to store images.
	ImageFsInfo(context.Context, *ImageFsInfoRequest) (*ImageFsInfoResponse, error)
}

ImageServiceServer is the server API for ImageService service.

type ImageSpec

type ImageSpec struct {
	// Container's Image field (e.g. imageID or imageDigest).
	Image string `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	// Unstructured key-value map holding arbitrary metadata.
	// ImageSpec Annotations can be used to help the runtime target specific
	// images in multi-arch images.
	Annotations          map[string]string `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

ImageSpec is an internal representation of an image.

func (*ImageSpec) Descriptor

func (*ImageSpec) Descriptor() ([]byte, []int)

func (*ImageSpec) GetAnnotations

func (m *ImageSpec) GetAnnotations() map[string]string

func (*ImageSpec) GetImage

func (m *ImageSpec) GetImage() string

func (*ImageSpec) Marshal

func (m *ImageSpec) Marshal() (dAtA []byte, err error)

func (*ImageSpec) MarshalTo

func (m *ImageSpec) MarshalTo(dAtA []byte) (int, error)

func (*ImageSpec) MarshalToSizedBuffer

func (m *ImageSpec) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageSpec) ProtoMessage

func (*ImageSpec) ProtoMessage()

func (*ImageSpec) Reset

func (m *ImageSpec) Reset()

func (*ImageSpec) Size

func (m *ImageSpec) Size() (n int)

func (*ImageSpec) String

func (this *ImageSpec) String() string

func (*ImageSpec) Unmarshal

func (m *ImageSpec) Unmarshal(dAtA []byte) error

func (*ImageSpec) XXX_DiscardUnknown

func (m *ImageSpec) XXX_DiscardUnknown()

func (*ImageSpec) XXX_Marshal

func (m *ImageSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageSpec) XXX_Merge

func (m *ImageSpec) XXX_Merge(src proto.Message)

func (*ImageSpec) XXX_Size

func (m *ImageSpec) XXX_Size() int

func (*ImageSpec) XXX_Unmarshal

func (m *ImageSpec) XXX_Unmarshal(b []byte) error

type ImageStatusRequest

type ImageStatusRequest struct {
	// Spec of the image.
	Image *ImageSpec `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	// Verbose indicates whether to return extra information about the image.
	Verbose              bool     `protobuf:"varint,2,opt,name=verbose,proto3" json:"verbose,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ImageStatusRequest) Descriptor

func (*ImageStatusRequest) Descriptor() ([]byte, []int)

func (*ImageStatusRequest) GetImage

func (m *ImageStatusRequest) GetImage() *ImageSpec

func (*ImageStatusRequest) GetVerbose

func (m *ImageStatusRequest) GetVerbose() bool

func (*ImageStatusRequest) Marshal

func (m *ImageStatusRequest) Marshal() (dAtA []byte, err error)

func (*ImageStatusRequest) MarshalTo

func (m *ImageStatusRequest) MarshalTo(dAtA []byte) (int, error)

func (*ImageStatusRequest) MarshalToSizedBuffer

func (m *ImageStatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageStatusRequest) ProtoMessage

func (*ImageStatusRequest) ProtoMessage()

func (*ImageStatusRequest) Reset

func (m *ImageStatusRequest) Reset()

func (*ImageStatusRequest) Size

func (m *ImageStatusRequest) Size() (n int)

func (*ImageStatusRequest) String

func (this *ImageStatusRequest) String() string

func (*ImageStatusRequest) Unmarshal

func (m *ImageStatusRequest) Unmarshal(dAtA []byte) error

func (*ImageStatusRequest) XXX_DiscardUnknown

func (m *ImageStatusRequest) XXX_DiscardUnknown()

func (*ImageStatusRequest) XXX_Marshal

func (m *ImageStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageStatusRequest) XXX_Merge

func (m *ImageStatusRequest) XXX_Merge(src proto.Message)

func (*ImageStatusRequest) XXX_Size

func (m *ImageStatusRequest) XXX_Size() int

func (*ImageStatusRequest) XXX_Unmarshal

func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error

type ImageStatusResponse

type ImageStatusResponse struct {
	// Status of the image.
	Image *Image `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	// Info is extra information of the Image. The key could be arbitrary string, and
	// value should be in json format. The information could include anything useful
	// for debug, e.g. image config for oci image based container runtime.
	// It should only be returned non-empty when Verbose is true.
	Info                 map[string]string `` /* 149-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ImageStatusResponse) Descriptor

func (*ImageStatusResponse) Descriptor() ([]byte, []int)

func (*ImageStatusResponse) GetImage

func (m *ImageStatusResponse) GetImage() *Image

func (*ImageStatusResponse) GetInfo

func (m *ImageStatusResponse) GetInfo() map[string]string

func (*ImageStatusResponse) Marshal

func (m *ImageStatusResponse) Marshal() (dAtA []byte, err error)

func (*ImageStatusResponse) MarshalTo

func (m *ImageStatusResponse) MarshalTo(dAtA []byte) (int, error)

func (*ImageStatusResponse) MarshalToSizedBuffer

func (m *ImageStatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ImageStatusResponse) ProtoMessage

func (*ImageStatusResponse) ProtoMessage()

func (*ImageStatusResponse) Reset

func (m *ImageStatusResponse) Reset()

func (*ImageStatusResponse) Size

func (m *ImageStatusResponse) Size() (n int)

func (*ImageStatusResponse) String

func (this *ImageStatusResponse) String() string

func (*ImageStatusResponse) Unmarshal

func (m *ImageStatusResponse) Unmarshal(dAtA []byte) error

func (*ImageStatusResponse) XXX_DiscardUnknown

func (m *ImageStatusResponse) XXX_DiscardUnknown()

func (*ImageStatusResponse) XXX_Marshal

func (m *ImageStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImageStatusResponse) XXX_Merge

func (m *ImageStatusResponse) XXX_Merge(src proto.Message)

func (*ImageStatusResponse) XXX_Size

func (m *ImageStatusResponse) XXX_Size() int

func (*ImageStatusResponse) XXX_Unmarshal

func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error

type Int64Value

type Int64Value struct {
	// The value.
	Value                int64    `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Int64Value is the wrapper of int64.

func (*Int64Value) Descriptor

func (*Int64Value) Descriptor() ([]byte, []int)

func (*Int64Value) GetValue

func (m *Int64Value) GetValue() int64

func (*Int64Value) Marshal

func (m *Int64Value) Marshal() (dAtA []byte, err error)

func (*Int64Value) MarshalTo

func (m *Int64Value) MarshalTo(dAtA []byte) (int, error)

func (*Int64Value) MarshalToSizedBuffer

func (m *Int64Value) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Int64Value) ProtoMessage

func (*Int64Value) ProtoMessage()

func (*Int64Value) Reset

func (m *Int64Value) Reset()

func (*Int64Value) Size

func (m *Int64Value) Size() (n int)

func (*Int64Value) String

func (this *Int64Value) String() string

func (*Int64Value) Unmarshal

func (m *Int64Value) Unmarshal(dAtA []byte) error

func (*Int64Value) XXX_DiscardUnknown

func (m *Int64Value) XXX_DiscardUnknown()

func (*Int64Value) XXX_Marshal

func (m *Int64Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Int64Value) XXX_Merge

func (m *Int64Value) XXX_Merge(src proto.Message)

func (*Int64Value) XXX_Size

func (m *Int64Value) XXX_Size() int

func (*Int64Value) XXX_Unmarshal

func (m *Int64Value) XXX_Unmarshal(b []byte) error

type KeyValue

type KeyValue struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value                string   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*KeyValue) Descriptor

func (*KeyValue) Descriptor() ([]byte, []int)

func (*KeyValue) GetKey

func (m *KeyValue) GetKey() string

func (*KeyValue) GetValue

func (m *KeyValue) GetValue() string

func (*KeyValue) Marshal

func (m *KeyValue) Marshal() (dAtA []byte, err error)

func (*KeyValue) MarshalTo

func (m *KeyValue) MarshalTo(dAtA []byte) (int, error)

func (*KeyValue) MarshalToSizedBuffer

func (m *KeyValue) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*KeyValue) ProtoMessage

func (*KeyValue) ProtoMessage()

func (*KeyValue) Reset

func (m *KeyValue) Reset()

func (*KeyValue) Size

func (m *KeyValue) Size() (n int)

func (*KeyValue) String

func (this *KeyValue) String() string

func (*KeyValue) Unmarshal

func (m *KeyValue) Unmarshal(dAtA []byte) error

func (*KeyValue) XXX_DiscardUnknown

func (m *KeyValue) XXX_DiscardUnknown()

func (*KeyValue) XXX_Marshal

func (m *KeyValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*KeyValue) XXX_Merge

func (m *KeyValue) XXX_Merge(src proto.Message)

func (*KeyValue) XXX_Size

func (m *KeyValue) XXX_Size() int

func (*KeyValue) XXX_Unmarshal

func (m *KeyValue) XXX_Unmarshal(b []byte) error

type LinuxContainerConfig

type LinuxContainerConfig struct {
	// Resources specification for the container.
	Resources *LinuxContainerResources `protobuf:"bytes,1,opt,name=resources,proto3" json:"resources,omitempty"`
	// LinuxContainerSecurityContext configuration for the container.
	SecurityContext      *LinuxContainerSecurityContext `protobuf:"bytes,2,opt,name=security_context,json=securityContext,proto3" json:"security_context,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

LinuxContainerConfig contains platform-specific configuration for Linux-based containers.

func (*LinuxContainerConfig) Descriptor

func (*LinuxContainerConfig) Descriptor() ([]byte, []int)

func (*LinuxContainerConfig) GetResources

func (m *LinuxContainerConfig) GetResources() *LinuxContainerResources

func (*LinuxContainerConfig) GetSecurityContext

func (m *LinuxContainerConfig) GetSecurityContext() *LinuxContainerSecurityContext

func (*LinuxContainerConfig) Marshal

func (m *LinuxContainerConfig) Marshal() (dAtA []byte, err error)

func (*LinuxContainerConfig) MarshalTo

func (m *LinuxContainerConfig) MarshalTo(dAtA []byte) (int, error)

func (*LinuxContainerConfig) MarshalToSizedBuffer

func (m *LinuxContainerConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinuxContainerConfig) ProtoMessage

func (*LinuxContainerConfig) ProtoMessage()

func (*LinuxContainerConfig) Reset

func (m *LinuxContainerConfig) Reset()

func (*LinuxContainerConfig) Size

func (m *LinuxContainerConfig) Size() (n int)

func (*LinuxContainerConfig) String

func (this *LinuxContainerConfig) String() string

func (*LinuxContainerConfig) Unmarshal

func (m *LinuxContainerConfig) Unmarshal(dAtA []byte) error

func (*LinuxContainerConfig) XXX_DiscardUnknown

func (m *LinuxContainerConfig) XXX_DiscardUnknown()

func (*LinuxContainerConfig) XXX_Marshal

func (m *LinuxContainerConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinuxContainerConfig) XXX_Merge

func (m *LinuxContainerConfig) XXX_Merge(src proto.Message)

func (*LinuxContainerConfig) XXX_Size

func (m *LinuxContainerConfig) XXX_Size() int

func (*LinuxContainerConfig) XXX_Unmarshal

func (m *LinuxContainerConfig) XXX_Unmarshal(b []byte) error

type LinuxContainerResources

type LinuxContainerResources struct {
	// CPU CFS (Completely Fair Scheduler) period. Default: 0 (not specified).
	CpuPeriod int64 `protobuf:"varint,1,opt,name=cpu_period,json=cpuPeriod,proto3" json:"cpu_period,omitempty"`
	// CPU CFS (Completely Fair Scheduler) quota. Default: 0 (not specified).
	CpuQuota int64 `protobuf:"varint,2,opt,name=cpu_quota,json=cpuQuota,proto3" json:"cpu_quota,omitempty"`
	// CPU shares (relative weight vs. other containers). Default: 0 (not specified).
	CpuShares int64 `protobuf:"varint,3,opt,name=cpu_shares,json=cpuShares,proto3" json:"cpu_shares,omitempty"`
	// Memory limit in bytes. Default: 0 (not specified).
	MemoryLimitInBytes int64 `protobuf:"varint,4,opt,name=memory_limit_in_bytes,json=memoryLimitInBytes,proto3" json:"memory_limit_in_bytes,omitempty"`
	// OOMScoreAdj adjusts the oom-killer score. Default: 0 (not specified).
	OomScoreAdj int64 `protobuf:"varint,5,opt,name=oom_score_adj,json=oomScoreAdj,proto3" json:"oom_score_adj,omitempty"`
	// CpusetCpus constrains the allowed set of logical CPUs. Default: "" (not specified).
	CpusetCpus string `protobuf:"bytes,6,opt,name=cpuset_cpus,json=cpusetCpus,proto3" json:"cpuset_cpus,omitempty"`
	// CpusetMems constrains the allowed set of memory nodes. Default: "" (not specified).
	CpusetMems string `protobuf:"bytes,7,opt,name=cpuset_mems,json=cpusetMems,proto3" json:"cpuset_mems,omitempty"`
	// List of HugepageLimits to limit the HugeTLB usage of container per page size. Default: nil (not specified).
	HugepageLimits       []*HugepageLimit `protobuf:"bytes,8,rep,name=hugepage_limits,json=hugepageLimits,proto3" json:"hugepage_limits,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

LinuxContainerResources specifies Linux specific configuration for resources.

func (*LinuxContainerResources) Descriptor

func (*LinuxContainerResources) Descriptor() ([]byte, []int)

func (*LinuxContainerResources) GetCpuPeriod

func (m *LinuxContainerResources) GetCpuPeriod() int64

func (*LinuxContainerResources) GetCpuQuota

func (m *LinuxContainerResources) GetCpuQuota() int64

func (*LinuxContainerResources) GetCpuShares

func (m *LinuxContainerResources) GetCpuShares() int64

func (*LinuxContainerResources) GetCpusetCpus

func (m *LinuxContainerResources) GetCpusetCpus() string

func (*LinuxContainerResources) GetCpusetMems

func (m *LinuxContainerResources) GetCpusetMems() string

func (*LinuxContainerResources) GetHugepageLimits

func (m *LinuxContainerResources) GetHugepageLimits() []*HugepageLimit

func (*LinuxContainerResources) GetMemoryLimitInBytes

func (m *LinuxContainerResources) GetMemoryLimitInBytes() int64

func (*LinuxContainerResources) GetOomScoreAdj

func (m *LinuxContainerResources) GetOomScoreAdj() int64

func (*LinuxContainerResources) Marshal

func (m *LinuxContainerResources) Marshal() (dAtA []byte, err error)

func (*LinuxContainerResources) MarshalTo

func (m *LinuxContainerResources) MarshalTo(dAtA []byte) (int, error)

func (*LinuxContainerResources) MarshalToSizedBuffer

func (m *LinuxContainerResources) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinuxContainerResources) ProtoMessage

func (*LinuxContainerResources) ProtoMessage()

func (*LinuxContainerResources) Reset

func (m *LinuxContainerResources) Reset()

func (*LinuxContainerResources) Size

func (m *LinuxContainerResources) Size() (n int)

func (*LinuxContainerResources) String

func (this *LinuxContainerResources) String() string

func (*LinuxContainerResources) Unmarshal

func (m *LinuxContainerResources) Unmarshal(dAtA []byte) error

func (*LinuxContainerResources) XXX_DiscardUnknown

func (m *LinuxContainerResources) XXX_DiscardUnknown()

func (*LinuxContainerResources) XXX_Marshal

func (m *LinuxContainerResources) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinuxContainerResources) XXX_Merge

func (m *LinuxContainerResources) XXX_Merge(src proto.Message)

func (*LinuxContainerResources) XXX_Size

func (m *LinuxContainerResources) XXX_Size() int

func (*LinuxContainerResources) XXX_Unmarshal

func (m *LinuxContainerResources) XXX_Unmarshal(b []byte) error

type LinuxContainerSecurityContext

type LinuxContainerSecurityContext struct {
	// Capabilities to add or drop.
	Capabilities *Capability `protobuf:"bytes,1,opt,name=capabilities,proto3" json:"capabilities,omitempty"`
	// If set, run container in privileged mode.
	// Privileged mode is incompatible with the following options. If
	// privileged is set, the following features MAY have no effect:
	// 1. capabilities
	// 2. selinux_options
	// 4. seccomp
	// 5. apparmor
	//
	// Privileged mode implies the following specific options are applied:
	// 1. All capabilities are added.
	// 2. Sensitive paths, such as kernel module paths within sysfs, are not masked.
	// 3. Any sysfs and procfs mounts are mounted RW.
	// 4. AppArmor confinement is not applied.
	// 5. Seccomp restrictions are not applied.
	// 6. The device cgroup does not restrict access to any devices.
	// 7. All devices from the host's /dev are available within the container.
	// 8. SELinux restrictions are not applied (e.g. label=disabled).
	Privileged bool `protobuf:"varint,2,opt,name=privileged,proto3" json:"privileged,omitempty"`
	// Configurations for the container's namespaces.
	// Only used if the container uses namespace for isolation.
	NamespaceOptions *NamespaceOption `protobuf:"bytes,3,opt,name=namespace_options,json=namespaceOptions,proto3" json:"namespace_options,omitempty"`
	// SELinux context to be optionally applied.
	SelinuxOptions *SELinuxOption `protobuf:"bytes,4,opt,name=selinux_options,json=selinuxOptions,proto3" json:"selinux_options,omitempty"`
	// UID to run the container process as. Only one of run_as_user and
	// run_as_username can be specified at a time.
	RunAsUser *Int64Value `protobuf:"bytes,5,opt,name=run_as_user,json=runAsUser,proto3" json:"run_as_user,omitempty"`
	// GID to run the container process as. run_as_group should only be specified
	// when run_as_user or run_as_username is specified; otherwise, the runtime
	// MUST error.
	RunAsGroup *Int64Value `protobuf:"bytes,12,opt,name=run_as_group,json=runAsGroup,proto3" json:"run_as_group,omitempty"`
	// User name to run the container process as. If specified, the user MUST
	// exist in the container image (i.e. in the /etc/passwd inside the image),
	// and be resolved there by the runtime; otherwise, the runtime MUST error.
	RunAsUsername string `protobuf:"bytes,6,opt,name=run_as_username,json=runAsUsername,proto3" json:"run_as_username,omitempty"`
	// If set, the root filesystem of the container is read-only.
	ReadonlyRootfs bool `protobuf:"varint,7,opt,name=readonly_rootfs,json=readonlyRootfs,proto3" json:"readonly_rootfs,omitempty"`
	// List of groups applied to the first process run in the container, in
	// addition to the container's primary GID.
	SupplementalGroups []int64 `protobuf:"varint,8,rep,packed,name=supplemental_groups,json=supplementalGroups,proto3" json:"supplemental_groups,omitempty"`
	// no_new_privs defines if the flag for no_new_privs should be set on the
	// container.
	NoNewPrivs bool `protobuf:"varint,11,opt,name=no_new_privs,json=noNewPrivs,proto3" json:"no_new_privs,omitempty"`
	// masked_paths is a slice of paths that should be masked by the container
	// runtime, this can be passed directly to the OCI spec.
	MaskedPaths []string `protobuf:"bytes,13,rep,name=masked_paths,json=maskedPaths,proto3" json:"masked_paths,omitempty"`
	// readonly_paths is a slice of paths that should be set as readonly by the
	// container runtime, this can be passed directly to the OCI spec.
	ReadonlyPaths []string `protobuf:"bytes,14,rep,name=readonly_paths,json=readonlyPaths,proto3" json:"readonly_paths,omitempty"`
	// Seccomp profile for the container.
	Seccomp *SecurityProfile `protobuf:"bytes,15,opt,name=seccomp,proto3" json:"seccomp,omitempty"`
	// AppArmor profile for the container.
	Apparmor *SecurityProfile `protobuf:"bytes,16,opt,name=apparmor,proto3" json:"apparmor,omitempty"`
	// AppArmor profile for the container, candidate values are:
	// * runtime/default: equivalent to not specifying a profile.
	// * unconfined: no profiles are loaded
	// * localhost/<profile_name>: profile loaded on the node
	//    (localhost) by name. The possible profile names are detailed at
	//    https://gitlab.com/apparmor/apparmor/-/wikis/AppArmor_Core_Policy_Reference
	ApparmorProfile string `protobuf:"bytes,9,opt,name=apparmor_profile,json=apparmorProfile,proto3" json:"apparmor_profile,omitempty"` // Deprecated: Do not use.
	// Seccomp profile for the container, candidate values are:
	// * runtime/default: the default profile for the container runtime
	// * unconfined: unconfined profile, ie, no seccomp sandboxing
	// * localhost/<full-path-to-profile>: the profile installed on the node.
	//   <full-path-to-profile> is the full path of the profile.
	// Default: "", which is identical with unconfined.
	SeccompProfilePath   string   `protobuf:"bytes,10,opt,name=seccomp_profile_path,json=seccompProfilePath,proto3" json:"seccomp_profile_path,omitempty"` // Deprecated: Do not use.
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

LinuxContainerSecurityContext holds linux security configuration that will be applied to a container.

func (*LinuxContainerSecurityContext) Descriptor

func (*LinuxContainerSecurityContext) Descriptor() ([]byte, []int)

func (*LinuxContainerSecurityContext) GetApparmor

func (*LinuxContainerSecurityContext) GetApparmorProfile deprecated

func (m *LinuxContainerSecurityContext) GetApparmorProfile() string

Deprecated: Do not use.

func (*LinuxContainerSecurityContext) GetCapabilities

func (m *LinuxContainerSecurityContext) GetCapabilities() *Capability

func (*LinuxContainerSecurityContext) GetMaskedPaths

func (m *LinuxContainerSecurityContext) GetMaskedPaths() []string

func (*LinuxContainerSecurityContext) GetNamespaceOptions

func (m *LinuxContainerSecurityContext) GetNamespaceOptions() *NamespaceOption

func (*LinuxContainerSecurityContext) GetNoNewPrivs

func (m *LinuxContainerSecurityContext) GetNoNewPrivs() bool

func (*LinuxContainerSecurityContext) GetPrivileged

func (m *LinuxContainerSecurityContext) GetPrivileged() bool

func (*LinuxContainerSecurityContext) GetReadonlyPaths

func (m *LinuxContainerSecurityContext) GetReadonlyPaths() []string

func (*LinuxContainerSecurityContext) GetReadonlyRootfs

func (m *LinuxContainerSecurityContext) GetReadonlyRootfs() bool

func (*LinuxContainerSecurityContext) GetRunAsGroup

func (m *LinuxContainerSecurityContext) GetRunAsGroup() *Int64Value

func (*LinuxContainerSecurityContext) GetRunAsUser

func (m *LinuxContainerSecurityContext) GetRunAsUser() *Int64Value

func (*LinuxContainerSecurityContext) GetRunAsUsername

func (m *LinuxContainerSecurityContext) GetRunAsUsername() string

func (*LinuxContainerSecurityContext) GetSeccomp

func (*LinuxContainerSecurityContext) GetSeccompProfilePath deprecated

func (m *LinuxContainerSecurityContext) GetSeccompProfilePath() string

Deprecated: Do not use.

func (*LinuxContainerSecurityContext) GetSelinuxOptions

func (m *LinuxContainerSecurityContext) GetSelinuxOptions() *SELinuxOption

func (*LinuxContainerSecurityContext) GetSupplementalGroups

func (m *LinuxContainerSecurityContext) GetSupplementalGroups() []int64

func (*LinuxContainerSecurityContext) Marshal

func (m *LinuxContainerSecurityContext) Marshal() (dAtA []byte, err error)

func (*LinuxContainerSecurityContext) MarshalTo

func (m *LinuxContainerSecurityContext) MarshalTo(dAtA []byte) (int, error)

func (*LinuxContainerSecurityContext) MarshalToSizedBuffer

func (m *LinuxContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinuxContainerSecurityContext) ProtoMessage

func (*LinuxContainerSecurityContext) ProtoMessage()

func (*LinuxContainerSecurityContext) Reset

func (m *LinuxContainerSecurityContext) Reset()

func (*LinuxContainerSecurityContext) Size

func (m *LinuxContainerSecurityContext) Size() (n int)

func (*LinuxContainerSecurityContext) String

func (this *LinuxContainerSecurityContext) String() string

func (*LinuxContainerSecurityContext) Unmarshal

func (m *LinuxContainerSecurityContext) Unmarshal(dAtA []byte) error

func (*LinuxContainerSecurityContext) XXX_DiscardUnknown

func (m *LinuxContainerSecurityContext) XXX_DiscardUnknown()

func (*LinuxContainerSecurityContext) XXX_Marshal

func (m *LinuxContainerSecurityContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinuxContainerSecurityContext) XXX_Merge

func (m *LinuxContainerSecurityContext) XXX_Merge(src proto.Message)

func (*LinuxContainerSecurityContext) XXX_Size

func (m *LinuxContainerSecurityContext) XXX_Size() int

func (*LinuxContainerSecurityContext) XXX_Unmarshal

func (m *LinuxContainerSecurityContext) XXX_Unmarshal(b []byte) error

type LinuxPodSandboxConfig

type LinuxPodSandboxConfig struct {
	// Parent cgroup of the PodSandbox.
	// The cgroupfs style syntax will be used, but the container runtime can
	// convert it to systemd semantics if needed.
	CgroupParent string `protobuf:"bytes,1,opt,name=cgroup_parent,json=cgroupParent,proto3" json:"cgroup_parent,omitempty"`
	// LinuxSandboxSecurityContext holds sandbox security attributes.
	SecurityContext *LinuxSandboxSecurityContext `protobuf:"bytes,2,opt,name=security_context,json=securityContext,proto3" json:"security_context,omitempty"`
	// Sysctls holds linux sysctls config for the sandbox.
	Sysctls              map[string]string `` /* 155-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

LinuxPodSandboxConfig holds platform-specific configurations for Linux host platforms and Linux-based containers.

func (*LinuxPodSandboxConfig) Descriptor

func (*LinuxPodSandboxConfig) Descriptor() ([]byte, []int)

func (*LinuxPodSandboxConfig) GetCgroupParent

func (m *LinuxPodSandboxConfig) GetCgroupParent() string

func (*LinuxPodSandboxConfig) GetSecurityContext

func (m *LinuxPodSandboxConfig) GetSecurityContext() *LinuxSandboxSecurityContext

func (*LinuxPodSandboxConfig) GetSysctls

func (m *LinuxPodSandboxConfig) GetSysctls() map[string]string

func (*LinuxPodSandboxConfig) Marshal

func (m *LinuxPodSandboxConfig) Marshal() (dAtA []byte, err error)

func (*LinuxPodSandboxConfig) MarshalTo

func (m *LinuxPodSandboxConfig) MarshalTo(dAtA []byte) (int, error)

func (*LinuxPodSandboxConfig) MarshalToSizedBuffer

func (m *LinuxPodSandboxConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinuxPodSandboxConfig) ProtoMessage

func (*LinuxPodSandboxConfig) ProtoMessage()

func (*LinuxPodSandboxConfig) Reset

func (m *LinuxPodSandboxConfig) Reset()

func (*LinuxPodSandboxConfig) Size

func (m *LinuxPodSandboxConfig) Size() (n int)

func (*LinuxPodSandboxConfig) String

func (this *LinuxPodSandboxConfig) String() string

func (*LinuxPodSandboxConfig) Unmarshal

func (m *LinuxPodSandboxConfig) Unmarshal(dAtA []byte) error

func (*LinuxPodSandboxConfig) XXX_DiscardUnknown

func (m *LinuxPodSandboxConfig) XXX_DiscardUnknown()

func (*LinuxPodSandboxConfig) XXX_Marshal

func (m *LinuxPodSandboxConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinuxPodSandboxConfig) XXX_Merge

func (m *LinuxPodSandboxConfig) XXX_Merge(src proto.Message)

func (*LinuxPodSandboxConfig) XXX_Size

func (m *LinuxPodSandboxConfig) XXX_Size() int

func (*LinuxPodSandboxConfig) XXX_Unmarshal

func (m *LinuxPodSandboxConfig) XXX_Unmarshal(b []byte) error

type LinuxPodSandboxStatus

type LinuxPodSandboxStatus struct {
	// Paths to the sandbox's namespaces.
	Namespaces           *Namespace `protobuf:"bytes,1,opt,name=namespaces,proto3" json:"namespaces,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

LinuxSandboxStatus contains status specific to Linux sandboxes.

func (*LinuxPodSandboxStatus) Descriptor

func (*LinuxPodSandboxStatus) Descriptor() ([]byte, []int)

func (*LinuxPodSandboxStatus) GetNamespaces

func (m *LinuxPodSandboxStatus) GetNamespaces() *Namespace

func (*LinuxPodSandboxStatus) Marshal

func (m *LinuxPodSandboxStatus) Marshal() (dAtA []byte, err error)

func (*LinuxPodSandboxStatus) MarshalTo

func (m *LinuxPodSandboxStatus) MarshalTo(dAtA []byte) (int, error)

func (*LinuxPodSandboxStatus) MarshalToSizedBuffer

func (m *LinuxPodSandboxStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinuxPodSandboxStatus) ProtoMessage

func (*LinuxPodSandboxStatus) ProtoMessage()

func (*LinuxPodSandboxStatus) Reset

func (m *LinuxPodSandboxStatus) Reset()

func (*LinuxPodSandboxStatus) Size

func (m *LinuxPodSandboxStatus) Size() (n int)

func (*LinuxPodSandboxStatus) String

func (this *LinuxPodSandboxStatus) String() string

func (*LinuxPodSandboxStatus) Unmarshal

func (m *LinuxPodSandboxStatus) Unmarshal(dAtA []byte) error

func (*LinuxPodSandboxStatus) XXX_DiscardUnknown

func (m *LinuxPodSandboxStatus) XXX_DiscardUnknown()

func (*LinuxPodSandboxStatus) XXX_Marshal

func (m *LinuxPodSandboxStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinuxPodSandboxStatus) XXX_Merge

func (m *LinuxPodSandboxStatus) XXX_Merge(src proto.Message)

func (*LinuxPodSandboxStatus) XXX_Size

func (m *LinuxPodSandboxStatus) XXX_Size() int

func (*LinuxPodSandboxStatus) XXX_Unmarshal

func (m *LinuxPodSandboxStatus) XXX_Unmarshal(b []byte) error

type LinuxSandboxSecurityContext

type LinuxSandboxSecurityContext struct {
	// Configurations for the sandbox's namespaces.
	// This will be used only if the PodSandbox uses namespace for isolation.
	NamespaceOptions *NamespaceOption `protobuf:"bytes,1,opt,name=namespace_options,json=namespaceOptions,proto3" json:"namespace_options,omitempty"`
	// Optional SELinux context to be applied.
	SelinuxOptions *SELinuxOption `protobuf:"bytes,2,opt,name=selinux_options,json=selinuxOptions,proto3" json:"selinux_options,omitempty"`
	// UID to run sandbox processes as, when applicable.
	RunAsUser *Int64Value `protobuf:"bytes,3,opt,name=run_as_user,json=runAsUser,proto3" json:"run_as_user,omitempty"`
	// GID to run sandbox processes as, when applicable. run_as_group should only
	// be specified when run_as_user is specified; otherwise, the runtime MUST error.
	RunAsGroup *Int64Value `protobuf:"bytes,8,opt,name=run_as_group,json=runAsGroup,proto3" json:"run_as_group,omitempty"`
	// If set, the root filesystem of the sandbox is read-only.
	ReadonlyRootfs bool `protobuf:"varint,4,opt,name=readonly_rootfs,json=readonlyRootfs,proto3" json:"readonly_rootfs,omitempty"`
	// List of groups applied to the first process run in the sandbox, in
	// addition to the sandbox's primary GID.
	SupplementalGroups []int64 `protobuf:"varint,5,rep,packed,name=supplemental_groups,json=supplementalGroups,proto3" json:"supplemental_groups,omitempty"`
	// Indicates whether the sandbox will be asked to run a privileged
	// container. If a privileged container is to be executed within it, this
	// MUST be true.
	// This allows a sandbox to take additional security precautions if no
	// privileged containers are expected to be run.
	Privileged bool `protobuf:"varint,6,opt,name=privileged,proto3" json:"privileged,omitempty"`
	// Seccomp profile for the sandbox.
	Seccomp *SecurityProfile `protobuf:"bytes,9,opt,name=seccomp,proto3" json:"seccomp,omitempty"`
	// AppArmor profile for the sandbox.
	Apparmor *SecurityProfile `protobuf:"bytes,10,opt,name=apparmor,proto3" json:"apparmor,omitempty"`
	// Seccomp profile for the sandbox, candidate values are:
	// * runtime/default: the default profile for the container runtime
	// * unconfined: unconfined profile, ie, no seccomp sandboxing
	// * localhost/<full-path-to-profile>: the profile installed on the node.
	//   <full-path-to-profile> is the full path of the profile.
	// Default: "", which is identical with unconfined.
	SeccompProfilePath   string   `protobuf:"bytes,7,opt,name=seccomp_profile_path,json=seccompProfilePath,proto3" json:"seccomp_profile_path,omitempty"` // Deprecated: Do not use.
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

LinuxSandboxSecurityContext holds linux security configuration that will be applied to a sandbox. Note that:

  1. It does not apply to containers in the pods.
  2. It may not be applicable to a PodSandbox which does not contain any running process.

func (*LinuxSandboxSecurityContext) Descriptor

func (*LinuxSandboxSecurityContext) Descriptor() ([]byte, []int)

func (*LinuxSandboxSecurityContext) GetApparmor

func (m *LinuxSandboxSecurityContext) GetApparmor() *SecurityProfile

func (*LinuxSandboxSecurityContext) GetNamespaceOptions

func (m *LinuxSandboxSecurityContext) GetNamespaceOptions() *NamespaceOption

func (*LinuxSandboxSecurityContext) GetPrivileged

func (m *LinuxSandboxSecurityContext) GetPrivileged() bool

func (*LinuxSandboxSecurityContext) GetReadonlyRootfs

func (m *LinuxSandboxSecurityContext) GetReadonlyRootfs() bool

func (*LinuxSandboxSecurityContext) GetRunAsGroup

func (m *LinuxSandboxSecurityContext) GetRunAsGroup() *Int64Value

func (*LinuxSandboxSecurityContext) GetRunAsUser

func (m *LinuxSandboxSecurityContext) GetRunAsUser() *Int64Value

func (*LinuxSandboxSecurityContext) GetSeccomp

func (*LinuxSandboxSecurityContext) GetSeccompProfilePath deprecated

func (m *LinuxSandboxSecurityContext) GetSeccompProfilePath() string

Deprecated: Do not use.

func (*LinuxSandboxSecurityContext) GetSelinuxOptions

func (m *LinuxSandboxSecurityContext) GetSelinuxOptions() *SELinuxOption

func (*LinuxSandboxSecurityContext) GetSupplementalGroups

func (m *LinuxSandboxSecurityContext) GetSupplementalGroups() []int64

func (*LinuxSandboxSecurityContext) Marshal

func (m *LinuxSandboxSecurityContext) Marshal() (dAtA []byte, err error)

func (*LinuxSandboxSecurityContext) MarshalTo

func (m *LinuxSandboxSecurityContext) MarshalTo(dAtA []byte) (int, error)

func (*LinuxSandboxSecurityContext) MarshalToSizedBuffer

func (m *LinuxSandboxSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LinuxSandboxSecurityContext) ProtoMessage

func (*LinuxSandboxSecurityContext) ProtoMessage()

func (*LinuxSandboxSecurityContext) Reset

func (m *LinuxSandboxSecurityContext) Reset()

func (*LinuxSandboxSecurityContext) Size

func (m *LinuxSandboxSecurityContext) Size() (n int)

func (*LinuxSandboxSecurityContext) String

func (this *LinuxSandboxSecurityContext) String() string

func (*LinuxSandboxSecurityContext) Unmarshal

func (m *LinuxSandboxSecurityContext) Unmarshal(dAtA []byte) error

func (*LinuxSandboxSecurityContext) XXX_DiscardUnknown

func (m *LinuxSandboxSecurityContext) XXX_DiscardUnknown()

func (*LinuxSandboxSecurityContext) XXX_Marshal

func (m *LinuxSandboxSecurityContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LinuxSandboxSecurityContext) XXX_Merge

func (m *LinuxSandboxSecurityContext) XXX_Merge(src proto.Message)

func (*LinuxSandboxSecurityContext) XXX_Size

func (m *LinuxSandboxSecurityContext) XXX_Size() int

func (*LinuxSandboxSecurityContext) XXX_Unmarshal

func (m *LinuxSandboxSecurityContext) XXX_Unmarshal(b []byte) error

type ListContainerStatsRequest

type ListContainerStatsRequest struct {
	// Filter for the list request.
	Filter               *ContainerStatsFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*ListContainerStatsRequest) Descriptor

func (*ListContainerStatsRequest) Descriptor() ([]byte, []int)

func (*ListContainerStatsRequest) GetFilter

func (*ListContainerStatsRequest) Marshal

func (m *ListContainerStatsRequest) Marshal() (dAtA []byte, err error)

func (*ListContainerStatsRequest) MarshalTo

func (m *ListContainerStatsRequest) MarshalTo(dAtA []byte) (int, error)

func (*ListContainerStatsRequest) MarshalToSizedBuffer

func (m *ListContainerStatsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListContainerStatsRequest) ProtoMessage

func (*ListContainerStatsRequest) ProtoMessage()

func (*ListContainerStatsRequest) Reset

func (m *ListContainerStatsRequest) Reset()

func (*ListContainerStatsRequest) Size

func (m *ListContainerStatsRequest) Size() (n int)

func (*ListContainerStatsRequest) String

func (this *ListContainerStatsRequest) String() string

func (*ListContainerStatsRequest) Unmarshal

func (m *ListContainerStatsRequest) Unmarshal(dAtA []byte) error

func (*ListContainerStatsRequest) XXX_DiscardUnknown

func (m *ListContainerStatsRequest) XXX_DiscardUnknown()

func (*ListContainerStatsRequest) XXX_Marshal

func (m *ListContainerStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListContainerStatsRequest) XXX_Merge

func (m *ListContainerStatsRequest) XXX_Merge(src proto.Message)

func (*ListContainerStatsRequest) XXX_Size

func (m *ListContainerStatsRequest) XXX_Size() int

func (*ListContainerStatsRequest) XXX_Unmarshal

func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error

type ListContainerStatsResponse

type ListContainerStatsResponse struct {
	// Stats of the container.
	Stats                []*ContainerStats `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ListContainerStatsResponse) Descriptor

func (*ListContainerStatsResponse) Descriptor() ([]byte, []int)

func (*ListContainerStatsResponse) GetStats

func (m *ListContainerStatsResponse) GetStats() []*ContainerStats

func (*ListContainerStatsResponse) Marshal

func (m *ListContainerStatsResponse) Marshal() (dAtA []byte, err error)

func (*ListContainerStatsResponse) MarshalTo

func (m *ListContainerStatsResponse) MarshalTo(dAtA []byte) (int, error)

func (*ListContainerStatsResponse) MarshalToSizedBuffer

func (m *ListContainerStatsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListContainerStatsResponse) ProtoMessage

func (*ListContainerStatsResponse) ProtoMessage()

func (*ListContainerStatsResponse) Reset

func (m *ListContainerStatsResponse) Reset()

func (*ListContainerStatsResponse) Size

func (m *ListContainerStatsResponse) Size() (n int)

func (*ListContainerStatsResponse) String

func (this *ListContainerStatsResponse) String() string

func (*ListContainerStatsResponse) Unmarshal

func (m *ListContainerStatsResponse) Unmarshal(dAtA []byte) error

func (*ListContainerStatsResponse) XXX_DiscardUnknown

func (m *ListContainerStatsResponse) XXX_DiscardUnknown()

func (*ListContainerStatsResponse) XXX_Marshal

func (m *ListContainerStatsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListContainerStatsResponse) XXX_Merge

func (m *ListContainerStatsResponse) XXX_Merge(src proto.Message)

func (*ListContainerStatsResponse) XXX_Size

func (m *ListContainerStatsResponse) XXX_Size() int

func (*ListContainerStatsResponse) XXX_Unmarshal

func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error

type ListContainersRequest

type ListContainersRequest struct {
	Filter               *ContainerFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*ListContainersRequest) Descriptor

func (*ListContainersRequest) Descriptor() ([]byte, []int)

func (*ListContainersRequest) GetFilter

func (m *ListContainersRequest) GetFilter() *ContainerFilter

func (*ListContainersRequest) Marshal

func (m *ListContainersRequest) Marshal() (dAtA []byte, err error)

func (*ListContainersRequest) MarshalTo

func (m *ListContainersRequest) MarshalTo(dAtA []byte) (int, error)

func (*ListContainersRequest) MarshalToSizedBuffer

func (m *ListContainersRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListContainersRequest) ProtoMessage

func (*ListContainersRequest) ProtoMessage()

func (*ListContainersRequest) Reset

func (m *ListContainersRequest) Reset()

func (*ListContainersRequest) Size

func (m *ListContainersRequest) Size() (n int)

func (*ListContainersRequest) String

func (this *ListContainersRequest) String() string

func (*ListContainersRequest) Unmarshal

func (m *ListContainersRequest) Unmarshal(dAtA []byte) error

func (*ListContainersRequest) XXX_DiscardUnknown

func (m *ListContainersRequest) XXX_DiscardUnknown()

func (*ListContainersRequest) XXX_Marshal

func (m *ListContainersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListContainersRequest) XXX_Merge

func (m *ListContainersRequest) XXX_Merge(src proto.Message)

func (*ListContainersRequest) XXX_Size

func (m *ListContainersRequest) XXX_Size() int

func (*ListContainersRequest) XXX_Unmarshal

func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error

type ListContainersResponse

type ListContainersResponse struct {
	// List of containers.
	Containers           []*Container `protobuf:"bytes,1,rep,name=containers,proto3" json:"containers,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ListContainersResponse) Descriptor

func (*ListContainersResponse) Descriptor() ([]byte, []int)

func (*ListContainersResponse) GetContainers

func (m *ListContainersResponse) GetContainers() []*Container

func (*ListContainersResponse) Marshal

func (m *ListContainersResponse) Marshal() (dAtA []byte, err error)

func (*ListContainersResponse) MarshalTo

func (m *ListContainersResponse) MarshalTo(dAtA []byte) (int, error)

func (*ListContainersResponse) MarshalToSizedBuffer

func (m *ListContainersResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListContainersResponse) ProtoMessage

func (*ListContainersResponse) ProtoMessage()

func (*ListContainersResponse) Reset

func (m *ListContainersResponse) Reset()

func (*ListContainersResponse) Size

func (m *ListContainersResponse) Size() (n int)

func (*ListContainersResponse) String

func (this *ListContainersResponse) String() string

func (*ListContainersResponse) Unmarshal

func (m *ListContainersResponse) Unmarshal(dAtA []byte) error

func (*ListContainersResponse) XXX_DiscardUnknown

func (m *ListContainersResponse) XXX_DiscardUnknown()

func (*ListContainersResponse) XXX_Marshal

func (m *ListContainersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListContainersResponse) XXX_Merge

func (m *ListContainersResponse) XXX_Merge(src proto.Message)

func (*ListContainersResponse) XXX_Size

func (m *ListContainersResponse) XXX_Size() int

func (*ListContainersResponse) XXX_Unmarshal

func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error

type ListImagesRequest

type ListImagesRequest struct {
	// Filter to list images.
	Filter               *ImageFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ListImagesRequest) Descriptor

func (*ListImagesRequest) Descriptor() ([]byte, []int)

func (*ListImagesRequest) GetFilter

func (m *ListImagesRequest) GetFilter() *ImageFilter

func (*ListImagesRequest) Marshal

func (m *ListImagesRequest) Marshal() (dAtA []byte, err error)

func (*ListImagesRequest) MarshalTo

func (m *ListImagesRequest) MarshalTo(dAtA []byte) (int, error)

func (*ListImagesRequest) MarshalToSizedBuffer

func (m *ListImagesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListImagesRequest) ProtoMessage

func (*ListImagesRequest) ProtoMessage()

func (*ListImagesRequest) Reset

func (m *ListImagesRequest) Reset()

func (*ListImagesRequest) Size

func (m *ListImagesRequest) Size() (n int)

func (*ListImagesRequest) String

func (this *ListImagesRequest) String() string

func (*ListImagesRequest) Unmarshal

func (m *ListImagesRequest) Unmarshal(dAtA []byte) error

func (*ListImagesRequest) XXX_DiscardUnknown

func (m *ListImagesRequest) XXX_DiscardUnknown()

func (*ListImagesRequest) XXX_Marshal

func (m *ListImagesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListImagesRequest) XXX_Merge

func (m *ListImagesRequest) XXX_Merge(src proto.Message)

func (*ListImagesRequest) XXX_Size

func (m *ListImagesRequest) XXX_Size() int

func (*ListImagesRequest) XXX_Unmarshal

func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error

type ListImagesResponse

type ListImagesResponse struct {
	// List of images.
	Images               []*Image `protobuf:"bytes,1,rep,name=images,proto3" json:"images,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListImagesResponse) Descriptor

func (*ListImagesResponse) Descriptor() ([]byte, []int)

func (*ListImagesResponse) GetImages

func (m *ListImagesResponse) GetImages() []*Image

func (*ListImagesResponse) Marshal

func (m *ListImagesResponse) Marshal() (dAtA []byte, err error)

func (*ListImagesResponse) MarshalTo

func (m *ListImagesResponse) MarshalTo(dAtA []byte) (int, error)

func (*ListImagesResponse) MarshalToSizedBuffer

func (m *ListImagesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListImagesResponse) ProtoMessage

func (*ListImagesResponse) ProtoMessage()

func (*ListImagesResponse) Reset

func (m *ListImagesResponse) Reset()

func (*ListImagesResponse) Size

func (m *ListImagesResponse) Size() (n int)

func (*ListImagesResponse) String

func (this *ListImagesResponse) String() string

func (*ListImagesResponse) Unmarshal

func (m *ListImagesResponse) Unmarshal(dAtA []byte) error

func (*ListImagesResponse) XXX_DiscardUnknown

func (m *ListImagesResponse) XXX_DiscardUnknown()

func (*ListImagesResponse) XXX_Marshal

func (m *ListImagesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListImagesResponse) XXX_Merge

func (m *ListImagesResponse) XXX_Merge(src proto.Message)

func (*ListImagesResponse) XXX_Size

func (m *ListImagesResponse) XXX_Size() int

func (*ListImagesResponse) XXX_Unmarshal

func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error

type ListPodSandboxRequest

type ListPodSandboxRequest struct {
	// PodSandboxFilter to filter a list of PodSandboxes.
	Filter               *PodSandboxFilter `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ListPodSandboxRequest) Descriptor

func (*ListPodSandboxRequest) Descriptor() ([]byte, []int)

func (*ListPodSandboxRequest) GetFilter

func (m *ListPodSandboxRequest) GetFilter() *PodSandboxFilter

func (*ListPodSandboxRequest) Marshal

func (m *ListPodSandboxRequest) Marshal() (dAtA []byte, err error)

func (*ListPodSandboxRequest) MarshalTo

func (m *ListPodSandboxRequest) MarshalTo(dAtA []byte) (int, error)

func (*ListPodSandboxRequest) MarshalToSizedBuffer

func (m *ListPodSandboxRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListPodSandboxRequest) ProtoMessage

func (*ListPodSandboxRequest) ProtoMessage()

func (*ListPodSandboxRequest) Reset

func (m *ListPodSandboxRequest) Reset()

func (*ListPodSandboxRequest) Size

func (m *ListPodSandboxRequest) Size() (n int)

func (*ListPodSandboxRequest) String

func (this *ListPodSandboxRequest) String() string

func (*ListPodSandboxRequest) Unmarshal

func (m *ListPodSandboxRequest) Unmarshal(dAtA []byte) error

func (*ListPodSandboxRequest) XXX_DiscardUnknown

func (m *ListPodSandboxRequest) XXX_DiscardUnknown()

func (*ListPodSandboxRequest) XXX_Marshal

func (m *ListPodSandboxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListPodSandboxRequest) XXX_Merge

func (m *ListPodSandboxRequest) XXX_Merge(src proto.Message)

func (*ListPodSandboxRequest) XXX_Size

func (m *ListPodSandboxRequest) XXX_Size() int

func (*ListPodSandboxRequest) XXX_Unmarshal

func (m *ListPodSandboxRequest) XXX_Unmarshal(b []byte) error

type ListPodSandboxResponse

type ListPodSandboxResponse struct {
	// List of PodSandboxes.
	Items                []*PodSandbox `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*ListPodSandboxResponse) Descriptor

func (*ListPodSandboxResponse) Descriptor() ([]byte, []int)

func (*ListPodSandboxResponse) GetItems

func (m *ListPodSandboxResponse) GetItems() []*PodSandbox

func (*ListPodSandboxResponse) Marshal

func (m *ListPodSandboxResponse) Marshal() (dAtA []byte, err error)

func (*ListPodSandboxResponse) MarshalTo

func (m *ListPodSandboxResponse) MarshalTo(dAtA []byte) (int, error)

func (*ListPodSandboxResponse) MarshalToSizedBuffer

func (m *ListPodSandboxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ListPodSandboxResponse) ProtoMessage

func (*ListPodSandboxResponse) ProtoMessage()

func (*ListPodSandboxResponse) Reset

func (m *ListPodSandboxResponse) Reset()

func (*ListPodSandboxResponse) Size

func (m *ListPodSandboxResponse) Size() (n int)

func (*ListPodSandboxResponse) String

func (this *ListPodSandboxResponse) String() string

func (*ListPodSandboxResponse) Unmarshal

func (m *ListPodSandboxResponse) Unmarshal(dAtA []byte) error

func (*ListPodSandboxResponse) XXX_DiscardUnknown

func (m *ListPodSandboxResponse) XXX_DiscardUnknown()

func (*ListPodSandboxResponse) XXX_Marshal

func (m *ListPodSandboxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListPodSandboxResponse) XXX_Merge

func (m *ListPodSandboxResponse) XXX_Merge(src proto.Message)

func (*ListPodSandboxResponse) XXX_Size

func (m *ListPodSandboxResponse) XXX_Size() int

func (*ListPodSandboxResponse) XXX_Unmarshal

func (m *ListPodSandboxResponse) XXX_Unmarshal(b []byte) error

type LogStreamType

type LogStreamType string

LogStreamType is the type of the stream in CRI container log.

const (
	// Stdout is the stream type for stdout.
	Stdout LogStreamType = "stdout"
	// Stderr is the stream type for stderr.
	Stderr LogStreamType = "stderr"
)

type LogTag

type LogTag string

LogTag is the tag of a log line in CRI container log. Currently defined log tags: * First tag: Partial/Full - P/F. The field in the container log format can be extended to include multiple tags by using a delimiter, but changes should be rare. If it becomes clear that better extensibility is desired, a more extensible format (e.g., json) should be adopted as a replacement and/or addition.

const (
	// LogTagPartial means the line is part of multiple lines.
	LogTagPartial LogTag = "P"
	// LogTagFull means the line is a single full line or the end of multiple lines.
	LogTagFull LogTag = "F"
	// LogTagDelimiter is the delimiter for different log tags.
	LogTagDelimiter = ":"
)

type MemoryUsage

type MemoryUsage struct {
	// Timestamp in nanoseconds at which the information were collected. Must be > 0.
	Timestamp int64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// The amount of working set memory in bytes.
	WorkingSetBytes      *UInt64Value `protobuf:"bytes,2,opt,name=working_set_bytes,json=workingSetBytes,proto3" json:"working_set_bytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

MemoryUsage provides the memory usage information.

func (*MemoryUsage) Descriptor

func (*MemoryUsage) Descriptor() ([]byte, []int)

func (*MemoryUsage) GetTimestamp

func (m *MemoryUsage) GetTimestamp() int64

func (*MemoryUsage) GetWorkingSetBytes

func (m *MemoryUsage) GetWorkingSetBytes() *UInt64Value

func (*MemoryUsage) Marshal

func (m *MemoryUsage) Marshal() (dAtA []byte, err error)

func (*MemoryUsage) MarshalTo

func (m *MemoryUsage) MarshalTo(dAtA []byte) (int, error)

func (*MemoryUsage) MarshalToSizedBuffer

func (m *MemoryUsage) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*MemoryUsage) ProtoMessage

func (*MemoryUsage) ProtoMessage()

func (*MemoryUsage) Reset

func (m *MemoryUsage) Reset()

func (*MemoryUsage) Size

func (m *MemoryUsage) Size() (n int)

func (*MemoryUsage) String

func (this *MemoryUsage) String() string

func (*MemoryUsage) Unmarshal

func (m *MemoryUsage) Unmarshal(dAtA []byte) error

func (*MemoryUsage) XXX_DiscardUnknown

func (m *MemoryUsage) XXX_DiscardUnknown()

func (*MemoryUsage) XXX_Marshal

func (m *MemoryUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MemoryUsage) XXX_Merge

func (m *MemoryUsage) XXX_Merge(src proto.Message)

func (*MemoryUsage) XXX_Size

func (m *MemoryUsage) XXX_Size() int

func (*MemoryUsage) XXX_Unmarshal

func (m *MemoryUsage) XXX_Unmarshal(b []byte) error

type Mount

type Mount struct {
	// Path of the mount within the container.
	ContainerPath string `protobuf:"bytes,1,opt,name=container_path,json=containerPath,proto3" json:"container_path,omitempty"`
	// Path of the mount on the host. If the hostPath doesn't exist, then runtimes
	// should report error. If the hostpath is a symbolic link, runtimes should
	// follow the symlink and mount the real destination to container.
	HostPath string `protobuf:"bytes,2,opt,name=host_path,json=hostPath,proto3" json:"host_path,omitempty"`
	// If set, the mount is read-only.
	Readonly bool `protobuf:"varint,3,opt,name=readonly,proto3" json:"readonly,omitempty"`
	// If set, the mount needs SELinux relabeling.
	SelinuxRelabel bool `protobuf:"varint,4,opt,name=selinux_relabel,json=selinuxRelabel,proto3" json:"selinux_relabel,omitempty"`
	// Requested propagation mode.
	Propagation          MountPropagation `protobuf:"varint,5,opt,name=propagation,proto3,enum=runtime.v1.MountPropagation" json:"propagation,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Mount specifies a host volume to mount into a container.

func (*Mount) Descriptor

func (*Mount) Descriptor() ([]byte, []int)

func (*Mount) GetContainerPath

func (m *Mount) GetContainerPath() string

func (*Mount) GetHostPath

func (m *Mount) GetHostPath() string

func (*Mount) GetPropagation

func (m *Mount) GetPropagation() MountPropagation

func (*Mount) GetReadonly

func (m *Mount) GetReadonly() bool

func (*Mount) GetSelinuxRelabel

func (m *Mount) GetSelinuxRelabel() bool

func (*Mount) Marshal

func (m *Mount) Marshal() (dAtA []byte, err error)

func (*Mount) MarshalTo

func (m *Mount) MarshalTo(dAtA []byte) (int, error)

func (*Mount) MarshalToSizedBuffer

func (m *Mount) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Mount) ProtoMessage

func (*Mount) ProtoMessage()

func (*Mount) Reset

func (m *Mount) Reset()

func (*Mount) Size

func (m *Mount) Size() (n int)

func (*Mount) String

func (this *Mount) String() string

func (*Mount) Unmarshal

func (m *Mount) Unmarshal(dAtA []byte) error

func (*Mount) XXX_DiscardUnknown

func (m *Mount) XXX_DiscardUnknown()

func (*Mount) XXX_Marshal

func (m *Mount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Mount) XXX_Merge

func (m *Mount) XXX_Merge(src proto.Message)

func (*Mount) XXX_Size

func (m *Mount) XXX_Size() int

func (*Mount) XXX_Unmarshal

func (m *Mount) XXX_Unmarshal(b []byte) error

type MountPropagation

type MountPropagation int32
const (
	// No mount propagation ("private" in Linux terminology).
	MountPropagation_PROPAGATION_PRIVATE MountPropagation = 0
	// Mounts get propagated from the host to the container ("rslave" in Linux).
	MountPropagation_PROPAGATION_HOST_TO_CONTAINER MountPropagation = 1
	// Mounts get propagated from the host to the container and from the
	// container to the host ("rshared" in Linux).
	MountPropagation_PROPAGATION_BIDIRECTIONAL MountPropagation = 2
)

func (MountPropagation) EnumDescriptor

func (MountPropagation) EnumDescriptor() ([]byte, []int)

func (MountPropagation) String

func (x MountPropagation) String() string

type Namespace

type Namespace struct {
	// Namespace options for Linux namespaces.
	Options              *NamespaceOption `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Namespace contains paths to the namespaces.

func (*Namespace) Descriptor

func (*Namespace) Descriptor() ([]byte, []int)

func (*Namespace) GetOptions

func (m *Namespace) GetOptions() *NamespaceOption

func (*Namespace) Marshal

func (m *Namespace) Marshal() (dAtA []byte, err error)

func (*Namespace) MarshalTo

func (m *Namespace) MarshalTo(dAtA []byte) (int, error)

func (*Namespace) MarshalToSizedBuffer

func (m *Namespace) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Namespace) ProtoMessage

func (*Namespace) ProtoMessage()

func (*Namespace) Reset

func (m *Namespace) Reset()

func (*Namespace) Size

func (m *Namespace) Size() (n int)

func (*Namespace) String

func (this *Namespace) String() string

func (*Namespace) Unmarshal

func (m *Namespace) Unmarshal(dAtA []byte) error

func (*Namespace) XXX_DiscardUnknown

func (m *Namespace) XXX_DiscardUnknown()

func (*Namespace) XXX_Marshal

func (m *Namespace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Namespace) XXX_Merge

func (m *Namespace) XXX_Merge(src proto.Message)

func (*Namespace) XXX_Size

func (m *Namespace) XXX_Size() int

func (*Namespace) XXX_Unmarshal

func (m *Namespace) XXX_Unmarshal(b []byte) error

type NamespaceMode

type NamespaceMode int32

A NamespaceMode describes the intended namespace configuration for each of the namespaces (Network, PID, IPC) in NamespaceOption. Runtimes should map these modes as appropriate for the technology underlying the runtime.

const (
	// A POD namespace is common to all containers in a pod.
	// For example, a container with a PID namespace of POD expects to view
	// all of the processes in all of the containers in the pod.
	NamespaceMode_POD NamespaceMode = 0
	// A CONTAINER namespace is restricted to a single container.
	// For example, a container with a PID namespace of CONTAINER expects to
	// view only the processes in that container.
	NamespaceMode_CONTAINER NamespaceMode = 1
	// A NODE namespace is the namespace of the Kubernetes node.
	// For example, a container with a PID namespace of NODE expects to view
	// all of the processes on the host running the kubelet.
	NamespaceMode_NODE NamespaceMode = 2
	// TARGET targets the namespace of another container. When this is specified,
	// a target_id must be specified in NamespaceOption and refer to a container
	// previously created with NamespaceMode CONTAINER. This containers namespace
	// will be made to match that of container target_id.
	// For example, a container with a PID namespace of TARGET expects to view
	// all of the processes that container target_id can view.
	NamespaceMode_TARGET NamespaceMode = 3
)

func (NamespaceMode) EnumDescriptor

func (NamespaceMode) EnumDescriptor() ([]byte, []int)

func (NamespaceMode) String

func (x NamespaceMode) String() string

type NamespaceOption

type NamespaceOption struct {
	// Network namespace for this container/sandbox.
	// Note: There is currently no way to set CONTAINER scoped network in the Kubernetes API.
	// Namespaces currently set by the kubelet: POD, NODE
	Network NamespaceMode `protobuf:"varint,1,opt,name=network,proto3,enum=runtime.v1.NamespaceMode" json:"network,omitempty"`
	// PID namespace for this container/sandbox.
	// Note: The CRI default is POD, but the v1.PodSpec default is CONTAINER.
	// The kubelet's runtime manager will set this to CONTAINER explicitly for v1 pods.
	// Namespaces currently set by the kubelet: POD, CONTAINER, NODE, TARGET
	Pid NamespaceMode `protobuf:"varint,2,opt,name=pid,proto3,enum=runtime.v1.NamespaceMode" json:"pid,omitempty"`
	// IPC namespace for this container/sandbox.
	// Note: There is currently no way to set CONTAINER scoped IPC in the Kubernetes API.
	// Namespaces currently set by the kubelet: POD, NODE
	Ipc NamespaceMode `protobuf:"varint,3,opt,name=ipc,proto3,enum=runtime.v1.NamespaceMode" json:"ipc,omitempty"`
	// Target Container ID for NamespaceMode of TARGET. This container must have been
	// previously created in the same pod. It is not possible to specify different targets
	// for each namespace.
	TargetId             string   `protobuf:"bytes,4,opt,name=target_id,json=targetId,proto3" json:"target_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

NamespaceOption provides options for Linux namespaces.

func (*NamespaceOption) Descriptor

func (*NamespaceOption) Descriptor() ([]byte, []int)

func (*NamespaceOption) GetIpc

func (m *NamespaceOption) GetIpc() NamespaceMode

func (*NamespaceOption) GetNetwork

func (m *NamespaceOption) GetNetwork() NamespaceMode

func (*NamespaceOption) GetPid

func (m *NamespaceOption) GetPid() NamespaceMode

func (*NamespaceOption) GetTargetId

func (m *NamespaceOption) GetTargetId() string

func (*NamespaceOption) Marshal

func (m *NamespaceOption) Marshal() (dAtA []byte, err error)

func (*NamespaceOption) MarshalTo

func (m *NamespaceOption) MarshalTo(dAtA []byte) (int, error)

func (*NamespaceOption) MarshalToSizedBuffer

func (m *NamespaceOption) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NamespaceOption) ProtoMessage

func (*NamespaceOption) ProtoMessage()

func (*NamespaceOption) Reset

func (m *NamespaceOption) Reset()

func (*NamespaceOption) Size

func (m *NamespaceOption) Size() (n int)

func (*NamespaceOption) String

func (this *NamespaceOption) String() string

func (*NamespaceOption) Unmarshal

func (m *NamespaceOption) Unmarshal(dAtA []byte) error

func (*NamespaceOption) XXX_DiscardUnknown

func (m *NamespaceOption) XXX_DiscardUnknown()

func (*NamespaceOption) XXX_Marshal

func (m *NamespaceOption) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NamespaceOption) XXX_Merge

func (m *NamespaceOption) XXX_Merge(src proto.Message)

func (*NamespaceOption) XXX_Size

func (m *NamespaceOption) XXX_Size() int

func (*NamespaceOption) XXX_Unmarshal

func (m *NamespaceOption) XXX_Unmarshal(b []byte) error

type NetworkConfig

type NetworkConfig struct {
	// CIDR to use for pod IP addresses. If the CIDR is empty, runtimes
	// should omit it.
	PodCidr              string   `protobuf:"bytes,1,opt,name=pod_cidr,json=podCidr,proto3" json:"pod_cidr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*NetworkConfig) Descriptor

func (*NetworkConfig) Descriptor() ([]byte, []int)

func (*NetworkConfig) GetPodCidr

func (m *NetworkConfig) GetPodCidr() string

func (*NetworkConfig) Marshal

func (m *NetworkConfig) Marshal() (dAtA []byte, err error)

func (*NetworkConfig) MarshalTo

func (m *NetworkConfig) MarshalTo(dAtA []byte) (int, error)

func (*NetworkConfig) MarshalToSizedBuffer

func (m *NetworkConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NetworkConfig) ProtoMessage

func (*NetworkConfig) ProtoMessage()

func (*NetworkConfig) Reset

func (m *NetworkConfig) Reset()

func (*NetworkConfig) Size

func (m *NetworkConfig) Size() (n int)

func (*NetworkConfig) String

func (this *NetworkConfig) String() string

func (*NetworkConfig) Unmarshal

func (m *NetworkConfig) Unmarshal(dAtA []byte) error

func (*NetworkConfig) XXX_DiscardUnknown

func (m *NetworkConfig) XXX_DiscardUnknown()

func (*NetworkConfig) XXX_Marshal

func (m *NetworkConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NetworkConfig) XXX_Merge

func (m *NetworkConfig) XXX_Merge(src proto.Message)

func (*NetworkConfig) XXX_Size

func (m *NetworkConfig) XXX_Size() int

func (*NetworkConfig) XXX_Unmarshal

func (m *NetworkConfig) XXX_Unmarshal(b []byte) error

type PodIP

type PodIP struct {
	// an ip is a string representation of an IPv4 or an IPv6
	Ip                   string   `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

PodIP represents an ip of a Pod

func (*PodIP) Descriptor

func (*PodIP) Descriptor() ([]byte, []int)

func (*PodIP) GetIp

func (m *PodIP) GetIp() string

func (*PodIP) Marshal

func (m *PodIP) Marshal() (dAtA []byte, err error)

func (*PodIP) MarshalTo

func (m *PodIP) MarshalTo(dAtA []byte) (int, error)

func (*PodIP) MarshalToSizedBuffer

func (m *PodIP) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodIP) ProtoMessage

func (*PodIP) ProtoMessage()

func (*PodIP) Reset

func (m *PodIP) Reset()

func (*PodIP) Size

func (m *PodIP) Size() (n int)

func (*PodIP) String

func (this *PodIP) String() string

func (*PodIP) Unmarshal

func (m *PodIP) Unmarshal(dAtA []byte) error

func (*PodIP) XXX_DiscardUnknown

func (m *PodIP) XXX_DiscardUnknown()

func (*PodIP) XXX_Marshal

func (m *PodIP) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodIP) XXX_Merge

func (m *PodIP) XXX_Merge(src proto.Message)

func (*PodIP) XXX_Size

func (m *PodIP) XXX_Size() int

func (*PodIP) XXX_Unmarshal

func (m *PodIP) XXX_Unmarshal(b []byte) error

type PodSandbox

type PodSandbox struct {
	// ID of the PodSandbox.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Metadata of the PodSandbox.
	Metadata *PodSandboxMetadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// State of the PodSandbox.
	State PodSandboxState `protobuf:"varint,3,opt,name=state,proto3,enum=runtime.v1.PodSandboxState" json:"state,omitempty"`
	// Creation timestamps of the PodSandbox in nanoseconds. Must be > 0.
	CreatedAt int64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Labels of the PodSandbox.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Unstructured key-value map holding arbitrary metadata.
	// Annotations MUST NOT be altered by the runtime; the value of this field
	// MUST be identical to that of the corresponding PodSandboxConfig used to
	// instantiate this PodSandbox.
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	// runtime configuration used for this PodSandbox.
	RuntimeHandler       string   `protobuf:"bytes,7,opt,name=runtime_handler,json=runtimeHandler,proto3" json:"runtime_handler,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

PodSandbox contains minimal information about a sandbox.

func (*PodSandbox) Descriptor

func (*PodSandbox) Descriptor() ([]byte, []int)

func (*PodSandbox) GetAnnotations

func (m *PodSandbox) GetAnnotations() map[string]string

func (*PodSandbox) GetCreatedAt

func (m *PodSandbox) GetCreatedAt() int64

func (*PodSandbox) GetId

func (m *PodSandbox) GetId() string

func (*PodSandbox) GetLabels

func (m *PodSandbox) GetLabels() map[string]string

func (*PodSandbox) GetMetadata

func (m *PodSandbox) GetMetadata() *PodSandboxMetadata

func (*PodSandbox) GetRuntimeHandler

func (m *PodSandbox) GetRuntimeHandler() string

func (*PodSandbox) GetState

func (m *PodSandbox) GetState() PodSandboxState

func (*PodSandbox) Marshal

func (m *PodSandbox) Marshal() (dAtA []byte, err error)

func (*PodSandbox) MarshalTo

func (m *PodSandbox) MarshalTo(dAtA []byte) (int, error)

func (*PodSandbox) MarshalToSizedBuffer

func (m *PodSandbox) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandbox) ProtoMessage

func (*PodSandbox) ProtoMessage()

func (*PodSandbox) Reset

func (m *PodSandbox) Reset()

func (*PodSandbox) Size

func (m *PodSandbox) Size() (n int)

func (*PodSandbox) String

func (this *PodSandbox) String() string

func (*PodSandbox) Unmarshal

func (m *PodSandbox) Unmarshal(dAtA []byte) error

func (*PodSandbox) XXX_DiscardUnknown

func (m *PodSandbox) XXX_DiscardUnknown()

func (*PodSandbox) XXX_Marshal

func (m *PodSandbox) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandbox) XXX_Merge

func (m *PodSandbox) XXX_Merge(src proto.Message)

func (*PodSandbox) XXX_Size

func (m *PodSandbox) XXX_Size() int

func (*PodSandbox) XXX_Unmarshal

func (m *PodSandbox) XXX_Unmarshal(b []byte) error

type PodSandboxConfig

type PodSandboxConfig struct {
	// Metadata of the sandbox. This information will uniquely identify the
	// sandbox, and the runtime should leverage this to ensure correct
	// operation. The runtime may also use this information to improve UX, such
	// as by constructing a readable name.
	Metadata *PodSandboxMetadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// Hostname of the sandbox. Hostname could only be empty when the pod
	// network namespace is NODE.
	Hostname string `protobuf:"bytes,2,opt,name=hostname,proto3" json:"hostname,omitempty"`
	// Path to the directory on the host in which container log files are
	// stored.
	// By default the log of a container going into the LogDirectory will be
	// hooked up to STDOUT and STDERR. However, the LogDirectory may contain
	// binary log files with structured logging data from the individual
	// containers. For example, the files might be newline separated JSON
	// structured logs, systemd-journald journal files, gRPC trace files, etc.
	// E.g.,
	//     PodSandboxConfig.LogDirectory = `/var/log/pods/<podUID>/`
	//     ContainerConfig.LogPath = `containerName/Instance#.log`
	LogDirectory string `protobuf:"bytes,3,opt,name=log_directory,json=logDirectory,proto3" json:"log_directory,omitempty"`
	// DNS config for the sandbox.
	DnsConfig *DNSConfig `protobuf:"bytes,4,opt,name=dns_config,json=dnsConfig,proto3" json:"dns_config,omitempty"`
	// Port mappings for the sandbox.
	PortMappings []*PortMapping `protobuf:"bytes,5,rep,name=port_mappings,json=portMappings,proto3" json:"port_mappings,omitempty"`
	// Key-value pairs that may be used to scope and select individual resources.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Unstructured key-value map that may be set by the kubelet to store and
	// retrieve arbitrary metadata. This will include any annotations set on a
	// pod through the Kubernetes API.
	//
	// Annotations MUST NOT be altered by the runtime; the annotations stored
	// here MUST be returned in the PodSandboxStatus associated with the pod
	// this PodSandboxConfig creates.
	//
	// In general, in order to preserve a well-defined interface between the
	// kubelet and the container runtime, annotations SHOULD NOT influence
	// runtime behaviour.
	//
	// Annotations can also be useful for runtime authors to experiment with
	// new features that are opaque to the Kubernetes APIs (both user-facing
	// and the CRI). Whenever possible, however, runtime authors SHOULD
	// consider proposing new typed fields for any new features instead.
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	// Optional configurations specific to Linux hosts.
	Linux                *LinuxPodSandboxConfig `protobuf:"bytes,8,opt,name=linux,proto3" json:"linux,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

PodSandboxConfig holds all the required and optional fields for creating a sandbox.

func (*PodSandboxConfig) Descriptor

func (*PodSandboxConfig) Descriptor() ([]byte, []int)

func (*PodSandboxConfig) GetAnnotations

func (m *PodSandboxConfig) GetAnnotations() map[string]string

func (*PodSandboxConfig) GetDnsConfig

func (m *PodSandboxConfig) GetDnsConfig() *DNSConfig

func (*PodSandboxConfig) GetHostname

func (m *PodSandboxConfig) GetHostname() string

func (*PodSandboxConfig) GetLabels

func (m *PodSandboxConfig) GetLabels() map[string]string

func (*PodSandboxConfig) GetLinux

func (m *PodSandboxConfig) GetLinux() *LinuxPodSandboxConfig

func (*PodSandboxConfig) GetLogDirectory

func (m *PodSandboxConfig) GetLogDirectory() string

func (*PodSandboxConfig) GetMetadata

func (m *PodSandboxConfig) GetMetadata() *PodSandboxMetadata

func (*PodSandboxConfig) GetPortMappings

func (m *PodSandboxConfig) GetPortMappings() []*PortMapping

func (*PodSandboxConfig) Marshal

func (m *PodSandboxConfig) Marshal() (dAtA []byte, err error)

func (*PodSandboxConfig) MarshalTo

func (m *PodSandboxConfig) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxConfig) MarshalToSizedBuffer

func (m *PodSandboxConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxConfig) ProtoMessage

func (*PodSandboxConfig) ProtoMessage()

func (*PodSandboxConfig) Reset

func (m *PodSandboxConfig) Reset()

func (*PodSandboxConfig) Size

func (m *PodSandboxConfig) Size() (n int)

func (*PodSandboxConfig) String

func (this *PodSandboxConfig) String() string

func (*PodSandboxConfig) Unmarshal

func (m *PodSandboxConfig) Unmarshal(dAtA []byte) error

func (*PodSandboxConfig) XXX_DiscardUnknown

func (m *PodSandboxConfig) XXX_DiscardUnknown()

func (*PodSandboxConfig) XXX_Marshal

func (m *PodSandboxConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxConfig) XXX_Merge

func (m *PodSandboxConfig) XXX_Merge(src proto.Message)

func (*PodSandboxConfig) XXX_Size

func (m *PodSandboxConfig) XXX_Size() int

func (*PodSandboxConfig) XXX_Unmarshal

func (m *PodSandboxConfig) XXX_Unmarshal(b []byte) error

type PodSandboxFilter

type PodSandboxFilter struct {
	// ID of the sandbox.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// State of the sandbox.
	State *PodSandboxStateValue `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	// LabelSelector to select matches.
	// Only api.MatchLabels is supported for now and the requirements
	// are ANDed. MatchExpressions is not supported yet.
	LabelSelector        map[string]string `` /* 188-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

PodSandboxFilter is used to filter a list of PodSandboxes. All those fields are combined with 'AND'

func (*PodSandboxFilter) Descriptor

func (*PodSandboxFilter) Descriptor() ([]byte, []int)

func (*PodSandboxFilter) GetId

func (m *PodSandboxFilter) GetId() string

func (*PodSandboxFilter) GetLabelSelector

func (m *PodSandboxFilter) GetLabelSelector() map[string]string

func (*PodSandboxFilter) GetState

func (m *PodSandboxFilter) GetState() *PodSandboxStateValue

func (*PodSandboxFilter) Marshal

func (m *PodSandboxFilter) Marshal() (dAtA []byte, err error)

func (*PodSandboxFilter) MarshalTo

func (m *PodSandboxFilter) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxFilter) MarshalToSizedBuffer

func (m *PodSandboxFilter) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxFilter) ProtoMessage

func (*PodSandboxFilter) ProtoMessage()

func (*PodSandboxFilter) Reset

func (m *PodSandboxFilter) Reset()

func (*PodSandboxFilter) Size

func (m *PodSandboxFilter) Size() (n int)

func (*PodSandboxFilter) String

func (this *PodSandboxFilter) String() string

func (*PodSandboxFilter) Unmarshal

func (m *PodSandboxFilter) Unmarshal(dAtA []byte) error

func (*PodSandboxFilter) XXX_DiscardUnknown

func (m *PodSandboxFilter) XXX_DiscardUnknown()

func (*PodSandboxFilter) XXX_Marshal

func (m *PodSandboxFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxFilter) XXX_Merge

func (m *PodSandboxFilter) XXX_Merge(src proto.Message)

func (*PodSandboxFilter) XXX_Size

func (m *PodSandboxFilter) XXX_Size() int

func (*PodSandboxFilter) XXX_Unmarshal

func (m *PodSandboxFilter) XXX_Unmarshal(b []byte) error

type PodSandboxMetadata

type PodSandboxMetadata struct {
	// Pod name of the sandbox. Same as the pod name in the Pod ObjectMeta.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Pod UID of the sandbox. Same as the pod UID in the Pod ObjectMeta.
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	// Pod namespace of the sandbox. Same as the pod namespace in the Pod ObjectMeta.
	Namespace string `protobuf:"bytes,3,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// Attempt number of creating the sandbox. Default: 0.
	Attempt              uint32   `protobuf:"varint,4,opt,name=attempt,proto3" json:"attempt,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

PodSandboxMetadata holds all necessary information for building the sandbox name. The container runtime is encouraged to expose the metadata associated with the PodSandbox in its user interface for better user experience. For example, the runtime can construct a unique PodSandboxName based on the metadata.

func (*PodSandboxMetadata) Descriptor

func (*PodSandboxMetadata) Descriptor() ([]byte, []int)

func (*PodSandboxMetadata) GetAttempt

func (m *PodSandboxMetadata) GetAttempt() uint32

func (*PodSandboxMetadata) GetName

func (m *PodSandboxMetadata) GetName() string

func (*PodSandboxMetadata) GetNamespace

func (m *PodSandboxMetadata) GetNamespace() string

func (*PodSandboxMetadata) GetUid

func (m *PodSandboxMetadata) GetUid() string

func (*PodSandboxMetadata) Marshal

func (m *PodSandboxMetadata) Marshal() (dAtA []byte, err error)

func (*PodSandboxMetadata) MarshalTo

func (m *PodSandboxMetadata) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxMetadata) MarshalToSizedBuffer

func (m *PodSandboxMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxMetadata) ProtoMessage

func (*PodSandboxMetadata) ProtoMessage()

func (*PodSandboxMetadata) Reset

func (m *PodSandboxMetadata) Reset()

func (*PodSandboxMetadata) Size

func (m *PodSandboxMetadata) Size() (n int)

func (*PodSandboxMetadata) String

func (this *PodSandboxMetadata) String() string

func (*PodSandboxMetadata) Unmarshal

func (m *PodSandboxMetadata) Unmarshal(dAtA []byte) error

func (*PodSandboxMetadata) XXX_DiscardUnknown

func (m *PodSandboxMetadata) XXX_DiscardUnknown()

func (*PodSandboxMetadata) XXX_Marshal

func (m *PodSandboxMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxMetadata) XXX_Merge

func (m *PodSandboxMetadata) XXX_Merge(src proto.Message)

func (*PodSandboxMetadata) XXX_Size

func (m *PodSandboxMetadata) XXX_Size() int

func (*PodSandboxMetadata) XXX_Unmarshal

func (m *PodSandboxMetadata) XXX_Unmarshal(b []byte) error

type PodSandboxNetworkStatus

type PodSandboxNetworkStatus struct {
	// IP address of the PodSandbox.
	Ip string `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
	// list of additional ips (not inclusive of PodSandboxNetworkStatus.Ip) of the PodSandBoxNetworkStatus
	AdditionalIps        []*PodIP `protobuf:"bytes,2,rep,name=additional_ips,json=additionalIps,proto3" json:"additional_ips,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

PodSandboxNetworkStatus is the status of the network for a PodSandbox.

func (*PodSandboxNetworkStatus) Descriptor

func (*PodSandboxNetworkStatus) Descriptor() ([]byte, []int)

func (*PodSandboxNetworkStatus) GetAdditionalIps

func (m *PodSandboxNetworkStatus) GetAdditionalIps() []*PodIP

func (*PodSandboxNetworkStatus) GetIp

func (m *PodSandboxNetworkStatus) GetIp() string

func (*PodSandboxNetworkStatus) Marshal

func (m *PodSandboxNetworkStatus) Marshal() (dAtA []byte, err error)

func (*PodSandboxNetworkStatus) MarshalTo

func (m *PodSandboxNetworkStatus) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxNetworkStatus) MarshalToSizedBuffer

func (m *PodSandboxNetworkStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxNetworkStatus) ProtoMessage

func (*PodSandboxNetworkStatus) ProtoMessage()

func (*PodSandboxNetworkStatus) Reset

func (m *PodSandboxNetworkStatus) Reset()

func (*PodSandboxNetworkStatus) Size

func (m *PodSandboxNetworkStatus) Size() (n int)

func (*PodSandboxNetworkStatus) String

func (this *PodSandboxNetworkStatus) String() string

func (*PodSandboxNetworkStatus) Unmarshal

func (m *PodSandboxNetworkStatus) Unmarshal(dAtA []byte) error

func (*PodSandboxNetworkStatus) XXX_DiscardUnknown

func (m *PodSandboxNetworkStatus) XXX_DiscardUnknown()

func (*PodSandboxNetworkStatus) XXX_Marshal

func (m *PodSandboxNetworkStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxNetworkStatus) XXX_Merge

func (m *PodSandboxNetworkStatus) XXX_Merge(src proto.Message)

func (*PodSandboxNetworkStatus) XXX_Size

func (m *PodSandboxNetworkStatus) XXX_Size() int

func (*PodSandboxNetworkStatus) XXX_Unmarshal

func (m *PodSandboxNetworkStatus) XXX_Unmarshal(b []byte) error

type PodSandboxState

type PodSandboxState int32
const (
	PodSandboxState_SANDBOX_READY    PodSandboxState = 0
	PodSandboxState_SANDBOX_NOTREADY PodSandboxState = 1
)

func (PodSandboxState) EnumDescriptor

func (PodSandboxState) EnumDescriptor() ([]byte, []int)

func (PodSandboxState) String

func (x PodSandboxState) String() string

type PodSandboxStateValue

type PodSandboxStateValue struct {
	// State of the sandbox.
	State                PodSandboxState `protobuf:"varint,1,opt,name=state,proto3,enum=runtime.v1.PodSandboxState" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

PodSandboxStateValue is the wrapper of PodSandboxState.

func (*PodSandboxStateValue) Descriptor

func (*PodSandboxStateValue) Descriptor() ([]byte, []int)

func (*PodSandboxStateValue) GetState

func (m *PodSandboxStateValue) GetState() PodSandboxState

func (*PodSandboxStateValue) Marshal

func (m *PodSandboxStateValue) Marshal() (dAtA []byte, err error)

func (*PodSandboxStateValue) MarshalTo

func (m *PodSandboxStateValue) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxStateValue) MarshalToSizedBuffer

func (m *PodSandboxStateValue) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxStateValue) ProtoMessage

func (*PodSandboxStateValue) ProtoMessage()

func (*PodSandboxStateValue) Reset

func (m *PodSandboxStateValue) Reset()

func (*PodSandboxStateValue) Size

func (m *PodSandboxStateValue) Size() (n int)

func (*PodSandboxStateValue) String

func (this *PodSandboxStateValue) String() string

func (*PodSandboxStateValue) Unmarshal

func (m *PodSandboxStateValue) Unmarshal(dAtA []byte) error

func (*PodSandboxStateValue) XXX_DiscardUnknown

func (m *PodSandboxStateValue) XXX_DiscardUnknown()

func (*PodSandboxStateValue) XXX_Marshal

func (m *PodSandboxStateValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxStateValue) XXX_Merge

func (m *PodSandboxStateValue) XXX_Merge(src proto.Message)

func (*PodSandboxStateValue) XXX_Size

func (m *PodSandboxStateValue) XXX_Size() int

func (*PodSandboxStateValue) XXX_Unmarshal

func (m *PodSandboxStateValue) XXX_Unmarshal(b []byte) error

type PodSandboxStatus

type PodSandboxStatus struct {
	// ID of the sandbox.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Metadata of the sandbox.
	Metadata *PodSandboxMetadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// State of the sandbox.
	State PodSandboxState `protobuf:"varint,3,opt,name=state,proto3,enum=runtime.v1.PodSandboxState" json:"state,omitempty"`
	// Creation timestamp of the sandbox in nanoseconds. Must be > 0.
	CreatedAt int64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// Network contains network status if network is handled by the runtime.
	Network *PodSandboxNetworkStatus `protobuf:"bytes,5,opt,name=network,proto3" json:"network,omitempty"`
	// Linux-specific status to a pod sandbox.
	Linux *LinuxPodSandboxStatus `protobuf:"bytes,6,opt,name=linux,proto3" json:"linux,omitempty"`
	// Labels are key-value pairs that may be used to scope and select individual resources.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Unstructured key-value map holding arbitrary metadata.
	// Annotations MUST NOT be altered by the runtime; the value of this field
	// MUST be identical to that of the corresponding PodSandboxConfig used to
	// instantiate the pod sandbox this status represents.
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	// runtime configuration used for this PodSandbox.
	RuntimeHandler       string   `protobuf:"bytes,9,opt,name=runtime_handler,json=runtimeHandler,proto3" json:"runtime_handler,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

PodSandboxStatus contains the status of the PodSandbox.

func (*PodSandboxStatus) Descriptor

func (*PodSandboxStatus) Descriptor() ([]byte, []int)

func (*PodSandboxStatus) GetAnnotations

func (m *PodSandboxStatus) GetAnnotations() map[string]string

func (*PodSandboxStatus) GetCreatedAt

func (m *PodSandboxStatus) GetCreatedAt() int64

func (*PodSandboxStatus) GetId

func (m *PodSandboxStatus) GetId() string

func (*PodSandboxStatus) GetLabels

func (m *PodSandboxStatus) GetLabels() map[string]string

func (*PodSandboxStatus) GetLinux

func (m *PodSandboxStatus) GetLinux() *LinuxPodSandboxStatus

func (*PodSandboxStatus) GetMetadata

func (m *PodSandboxStatus) GetMetadata() *PodSandboxMetadata

func (*PodSandboxStatus) GetNetwork

func (m *PodSandboxStatus) GetNetwork() *PodSandboxNetworkStatus

func (*PodSandboxStatus) GetRuntimeHandler

func (m *PodSandboxStatus) GetRuntimeHandler() string

func (*PodSandboxStatus) GetState

func (m *PodSandboxStatus) GetState() PodSandboxState

func (*PodSandboxStatus) Marshal

func (m *PodSandboxStatus) Marshal() (dAtA []byte, err error)

func (*PodSandboxStatus) MarshalTo

func (m *PodSandboxStatus) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxStatus) MarshalToSizedBuffer

func (m *PodSandboxStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxStatus) ProtoMessage

func (*PodSandboxStatus) ProtoMessage()

func (*PodSandboxStatus) Reset

func (m *PodSandboxStatus) Reset()

func (*PodSandboxStatus) Size

func (m *PodSandboxStatus) Size() (n int)

func (*PodSandboxStatus) String

func (this *PodSandboxStatus) String() string

func (*PodSandboxStatus) Unmarshal

func (m *PodSandboxStatus) Unmarshal(dAtA []byte) error

func (*PodSandboxStatus) XXX_DiscardUnknown

func (m *PodSandboxStatus) XXX_DiscardUnknown()

func (*PodSandboxStatus) XXX_Marshal

func (m *PodSandboxStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxStatus) XXX_Merge

func (m *PodSandboxStatus) XXX_Merge(src proto.Message)

func (*PodSandboxStatus) XXX_Size

func (m *PodSandboxStatus) XXX_Size() int

func (*PodSandboxStatus) XXX_Unmarshal

func (m *PodSandboxStatus) XXX_Unmarshal(b []byte) error

type PodSandboxStatusRequest

type PodSandboxStatusRequest struct {
	// ID of the PodSandbox for which to retrieve status.
	PodSandboxId string `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	// Verbose indicates whether to return extra information about the pod sandbox.
	Verbose              bool     `protobuf:"varint,2,opt,name=verbose,proto3" json:"verbose,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PodSandboxStatusRequest) Descriptor

func (*PodSandboxStatusRequest) Descriptor() ([]byte, []int)

func (*PodSandboxStatusRequest) GetPodSandboxId

func (m *PodSandboxStatusRequest) GetPodSandboxId() string

func (*PodSandboxStatusRequest) GetVerbose

func (m *PodSandboxStatusRequest) GetVerbose() bool

func (*PodSandboxStatusRequest) Marshal

func (m *PodSandboxStatusRequest) Marshal() (dAtA []byte, err error)

func (*PodSandboxStatusRequest) MarshalTo

func (m *PodSandboxStatusRequest) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxStatusRequest) MarshalToSizedBuffer

func (m *PodSandboxStatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxStatusRequest) ProtoMessage

func (*PodSandboxStatusRequest) ProtoMessage()

func (*PodSandboxStatusRequest) Reset

func (m *PodSandboxStatusRequest) Reset()

func (*PodSandboxStatusRequest) Size

func (m *PodSandboxStatusRequest) Size() (n int)

func (*PodSandboxStatusRequest) String

func (this *PodSandboxStatusRequest) String() string

func (*PodSandboxStatusRequest) Unmarshal

func (m *PodSandboxStatusRequest) Unmarshal(dAtA []byte) error

func (*PodSandboxStatusRequest) XXX_DiscardUnknown

func (m *PodSandboxStatusRequest) XXX_DiscardUnknown()

func (*PodSandboxStatusRequest) XXX_Marshal

func (m *PodSandboxStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxStatusRequest) XXX_Merge

func (m *PodSandboxStatusRequest) XXX_Merge(src proto.Message)

func (*PodSandboxStatusRequest) XXX_Size

func (m *PodSandboxStatusRequest) XXX_Size() int

func (*PodSandboxStatusRequest) XXX_Unmarshal

func (m *PodSandboxStatusRequest) XXX_Unmarshal(b []byte) error

type PodSandboxStatusResponse

type PodSandboxStatusResponse struct {
	// Status of the PodSandbox.
	Status *PodSandboxStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	// Info is extra information of the PodSandbox. The key could be arbitrary string, and
	// value should be in json format. The information could include anything useful for
	// debug, e.g. network namespace for linux container based container runtime.
	// It should only be returned non-empty when Verbose is true.
	Info                 map[string]string `` /* 149-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*PodSandboxStatusResponse) Descriptor

func (*PodSandboxStatusResponse) Descriptor() ([]byte, []int)

func (*PodSandboxStatusResponse) GetInfo

func (m *PodSandboxStatusResponse) GetInfo() map[string]string

func (*PodSandboxStatusResponse) GetStatus

func (*PodSandboxStatusResponse) Marshal

func (m *PodSandboxStatusResponse) Marshal() (dAtA []byte, err error)

func (*PodSandboxStatusResponse) MarshalTo

func (m *PodSandboxStatusResponse) MarshalTo(dAtA []byte) (int, error)

func (*PodSandboxStatusResponse) MarshalToSizedBuffer

func (m *PodSandboxStatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PodSandboxStatusResponse) ProtoMessage

func (*PodSandboxStatusResponse) ProtoMessage()

func (*PodSandboxStatusResponse) Reset

func (m *PodSandboxStatusResponse) Reset()

func (*PodSandboxStatusResponse) Size

func (m *PodSandboxStatusResponse) Size() (n int)

func (*PodSandboxStatusResponse) String

func (this *PodSandboxStatusResponse) String() string

func (*PodSandboxStatusResponse) Unmarshal

func (m *PodSandboxStatusResponse) Unmarshal(dAtA []byte) error

func (*PodSandboxStatusResponse) XXX_DiscardUnknown

func (m *PodSandboxStatusResponse) XXX_DiscardUnknown()

func (*PodSandboxStatusResponse) XXX_Marshal

func (m *PodSandboxStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PodSandboxStatusResponse) XXX_Merge

func (m *PodSandboxStatusResponse) XXX_Merge(src proto.Message)

func (*PodSandboxStatusResponse) XXX_Size

func (m *PodSandboxStatusResponse) XXX_Size() int

func (*PodSandboxStatusResponse) XXX_Unmarshal

func (m *PodSandboxStatusResponse) XXX_Unmarshal(b []byte) error

type PortForwardRequest

type PortForwardRequest struct {
	// ID of the container to which to forward the port.
	PodSandboxId string `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	// Port to forward.
	Port                 []int32  `protobuf:"varint,2,rep,packed,name=port,proto3" json:"port,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PortForwardRequest) Descriptor

func (*PortForwardRequest) Descriptor() ([]byte, []int)

func (*PortForwardRequest) GetPodSandboxId

func (m *PortForwardRequest) GetPodSandboxId() string

func (*PortForwardRequest) GetPort

func (m *PortForwardRequest) GetPort() []int32

func (*PortForwardRequest) Marshal

func (m *PortForwardRequest) Marshal() (dAtA []byte, err error)

func (*PortForwardRequest) MarshalTo

func (m *PortForwardRequest) MarshalTo(dAtA []byte) (int, error)

func (*PortForwardRequest) MarshalToSizedBuffer

func (m *PortForwardRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortForwardRequest) ProtoMessage

func (*PortForwardRequest) ProtoMessage()

func (*PortForwardRequest) Reset

func (m *PortForwardRequest) Reset()

func (*PortForwardRequest) Size

func (m *PortForwardRequest) Size() (n int)

func (*PortForwardRequest) String

func (this *PortForwardRequest) String() string

func (*PortForwardRequest) Unmarshal

func (m *PortForwardRequest) Unmarshal(dAtA []byte) error

func (*PortForwardRequest) XXX_DiscardUnknown

func (m *PortForwardRequest) XXX_DiscardUnknown()

func (*PortForwardRequest) XXX_Marshal

func (m *PortForwardRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortForwardRequest) XXX_Merge

func (m *PortForwardRequest) XXX_Merge(src proto.Message)

func (*PortForwardRequest) XXX_Size

func (m *PortForwardRequest) XXX_Size() int

func (*PortForwardRequest) XXX_Unmarshal

func (m *PortForwardRequest) XXX_Unmarshal(b []byte) error

type PortForwardResponse

type PortForwardResponse struct {
	// Fully qualified URL of the port-forward streaming server.
	Url                  string   `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PortForwardResponse) Descriptor

func (*PortForwardResponse) Descriptor() ([]byte, []int)

func (*PortForwardResponse) GetUrl

func (m *PortForwardResponse) GetUrl() string

func (*PortForwardResponse) Marshal

func (m *PortForwardResponse) Marshal() (dAtA []byte, err error)

func (*PortForwardResponse) MarshalTo

func (m *PortForwardResponse) MarshalTo(dAtA []byte) (int, error)

func (*PortForwardResponse) MarshalToSizedBuffer

func (m *PortForwardResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortForwardResponse) ProtoMessage

func (*PortForwardResponse) ProtoMessage()

func (*PortForwardResponse) Reset

func (m *PortForwardResponse) Reset()

func (*PortForwardResponse) Size

func (m *PortForwardResponse) Size() (n int)

func (*PortForwardResponse) String

func (this *PortForwardResponse) String() string

func (*PortForwardResponse) Unmarshal

func (m *PortForwardResponse) Unmarshal(dAtA []byte) error

func (*PortForwardResponse) XXX_DiscardUnknown

func (m *PortForwardResponse) XXX_DiscardUnknown()

func (*PortForwardResponse) XXX_Marshal

func (m *PortForwardResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortForwardResponse) XXX_Merge

func (m *PortForwardResponse) XXX_Merge(src proto.Message)

func (*PortForwardResponse) XXX_Size

func (m *PortForwardResponse) XXX_Size() int

func (*PortForwardResponse) XXX_Unmarshal

func (m *PortForwardResponse) XXX_Unmarshal(b []byte) error

type PortMapping

type PortMapping struct {
	// Protocol of the port mapping.
	Protocol Protocol `protobuf:"varint,1,opt,name=protocol,proto3,enum=runtime.v1.Protocol" json:"protocol,omitempty"`
	// Port number within the container. Default: 0 (not specified).
	ContainerPort int32 `protobuf:"varint,2,opt,name=container_port,json=containerPort,proto3" json:"container_port,omitempty"`
	// Port number on the host. Default: 0 (not specified).
	HostPort int32 `protobuf:"varint,3,opt,name=host_port,json=hostPort,proto3" json:"host_port,omitempty"`
	// Host IP.
	HostIp               string   `protobuf:"bytes,4,opt,name=host_ip,json=hostIp,proto3" json:"host_ip,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

PortMapping specifies the port mapping configurations of a sandbox.

func (*PortMapping) Descriptor

func (*PortMapping) Descriptor() ([]byte, []int)

func (*PortMapping) GetContainerPort

func (m *PortMapping) GetContainerPort() int32

func (*PortMapping) GetHostIp

func (m *PortMapping) GetHostIp() string

func (*PortMapping) GetHostPort

func (m *PortMapping) GetHostPort() int32

func (*PortMapping) GetProtocol

func (m *PortMapping) GetProtocol() Protocol

func (*PortMapping) Marshal

func (m *PortMapping) Marshal() (dAtA []byte, err error)

func (*PortMapping) MarshalTo

func (m *PortMapping) MarshalTo(dAtA []byte) (int, error)

func (*PortMapping) MarshalToSizedBuffer

func (m *PortMapping) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PortMapping) ProtoMessage

func (*PortMapping) ProtoMessage()

func (*PortMapping) Reset

func (m *PortMapping) Reset()

func (*PortMapping) Size

func (m *PortMapping) Size() (n int)

func (*PortMapping) String

func (this *PortMapping) String() string

func (*PortMapping) Unmarshal

func (m *PortMapping) Unmarshal(dAtA []byte) error

func (*PortMapping) XXX_DiscardUnknown

func (m *PortMapping) XXX_DiscardUnknown()

func (*PortMapping) XXX_Marshal

func (m *PortMapping) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PortMapping) XXX_Merge

func (m *PortMapping) XXX_Merge(src proto.Message)

func (*PortMapping) XXX_Size

func (m *PortMapping) XXX_Size() int

func (*PortMapping) XXX_Unmarshal

func (m *PortMapping) XXX_Unmarshal(b []byte) error

type Protocol

type Protocol int32
const (
	Protocol_TCP  Protocol = 0
	Protocol_UDP  Protocol = 1
	Protocol_SCTP Protocol = 2
)

func (Protocol) EnumDescriptor

func (Protocol) EnumDescriptor() ([]byte, []int)

func (Protocol) String

func (x Protocol) String() string

type PullImageRequest

type PullImageRequest struct {
	// Spec of the image.
	Image *ImageSpec `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	// Authentication configuration for pulling the image.
	Auth *AuthConfig `protobuf:"bytes,2,opt,name=auth,proto3" json:"auth,omitempty"`
	// Config of the PodSandbox, which is used to pull image in PodSandbox context.
	SandboxConfig        *PodSandboxConfig `protobuf:"bytes,3,opt,name=sandbox_config,json=sandboxConfig,proto3" json:"sandbox_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*PullImageRequest) Descriptor

func (*PullImageRequest) Descriptor() ([]byte, []int)

func (*PullImageRequest) GetAuth

func (m *PullImageRequest) GetAuth() *AuthConfig

func (*PullImageRequest) GetImage

func (m *PullImageRequest) GetImage() *ImageSpec

func (*PullImageRequest) GetSandboxConfig

func (m *PullImageRequest) GetSandboxConfig() *PodSandboxConfig

func (*PullImageRequest) Marshal

func (m *PullImageRequest) Marshal() (dAtA []byte, err error)

func (*PullImageRequest) MarshalTo

func (m *PullImageRequest) MarshalTo(dAtA []byte) (int, error)

func (*PullImageRequest) MarshalToSizedBuffer

func (m *PullImageRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PullImageRequest) ProtoMessage

func (*PullImageRequest) ProtoMessage()

func (*PullImageRequest) Reset

func (m *PullImageRequest) Reset()

func (*PullImageRequest) Size

func (m *PullImageRequest) Size() (n int)

func (*PullImageRequest) String

func (this *PullImageRequest) String() string

func (*PullImageRequest) Unmarshal

func (m *PullImageRequest) Unmarshal(dAtA []byte) error

func (*PullImageRequest) XXX_DiscardUnknown

func (m *PullImageRequest) XXX_DiscardUnknown()

func (*PullImageRequest) XXX_Marshal

func (m *PullImageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullImageRequest) XXX_Merge

func (m *PullImageRequest) XXX_Merge(src proto.Message)

func (*PullImageRequest) XXX_Size

func (m *PullImageRequest) XXX_Size() int

func (*PullImageRequest) XXX_Unmarshal

func (m *PullImageRequest) XXX_Unmarshal(b []byte) error

type PullImageResponse

type PullImageResponse struct {
	// Reference to the image in use. For most runtimes, this should be an
	// image ID or digest.
	ImageRef             string   `protobuf:"bytes,1,opt,name=image_ref,json=imageRef,proto3" json:"image_ref,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PullImageResponse) Descriptor

func (*PullImageResponse) Descriptor() ([]byte, []int)

func (*PullImageResponse) GetImageRef

func (m *PullImageResponse) GetImageRef() string

func (*PullImageResponse) Marshal

func (m *PullImageResponse) Marshal() (dAtA []byte, err error)

func (*PullImageResponse) MarshalTo

func (m *PullImageResponse) MarshalTo(dAtA []byte) (int, error)

func (*PullImageResponse) MarshalToSizedBuffer

func (m *PullImageResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*PullImageResponse) ProtoMessage

func (*PullImageResponse) ProtoMessage()

func (*PullImageResponse) Reset

func (m *PullImageResponse) Reset()

func (*PullImageResponse) Size

func (m *PullImageResponse) Size() (n int)

func (*PullImageResponse) String

func (this *PullImageResponse) String() string

func (*PullImageResponse) Unmarshal

func (m *PullImageResponse) Unmarshal(dAtA []byte) error

func (*PullImageResponse) XXX_DiscardUnknown

func (m *PullImageResponse) XXX_DiscardUnknown()

func (*PullImageResponse) XXX_Marshal

func (m *PullImageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PullImageResponse) XXX_Merge

func (m *PullImageResponse) XXX_Merge(src proto.Message)

func (*PullImageResponse) XXX_Size

func (m *PullImageResponse) XXX_Size() int

func (*PullImageResponse) XXX_Unmarshal

func (m *PullImageResponse) XXX_Unmarshal(b []byte) error

type RemoveContainerRequest

type RemoveContainerRequest struct {
	// ID of the container to remove.
	ContainerId          string   `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemoveContainerRequest) Descriptor

func (*RemoveContainerRequest) Descriptor() ([]byte, []int)

func (*RemoveContainerRequest) GetContainerId

func (m *RemoveContainerRequest) GetContainerId() string

func (*RemoveContainerRequest) Marshal

func (m *RemoveContainerRequest) Marshal() (dAtA []byte, err error)

func (*RemoveContainerRequest) MarshalTo

func (m *RemoveContainerRequest) MarshalTo(dAtA []byte) (int, error)

func (*RemoveContainerRequest) MarshalToSizedBuffer

func (m *RemoveContainerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RemoveContainerRequest) ProtoMessage

func (*RemoveContainerRequest) ProtoMessage()

func (*RemoveContainerRequest) Reset

func (m *RemoveContainerRequest) Reset()

func (*RemoveContainerRequest) Size

func (m *RemoveContainerRequest) Size() (n int)

func (*RemoveContainerRequest) String

func (this *RemoveContainerRequest) String() string

func (*RemoveContainerRequest) Unmarshal

func (m *RemoveContainerRequest) Unmarshal(dAtA []byte) error

func (*RemoveContainerRequest) XXX_DiscardUnknown

func (m *RemoveContainerRequest) XXX_DiscardUnknown()

func (*RemoveContainerRequest) XXX_Marshal

func (m *RemoveContainerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemoveContainerRequest) XXX_Merge

func (m *RemoveContainerRequest) XXX_Merge(src proto.Message)

func (*RemoveContainerRequest) XXX_Size

func (m *RemoveContainerRequest) XXX_Size() int

func (*RemoveContainerRequest) XXX_Unmarshal

func (m *RemoveContainerRequest) XXX_Unmarshal(b []byte) error

type RemoveContainerResponse

type RemoveContainerResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemoveContainerResponse) Descriptor

func (*RemoveContainerResponse) Descriptor() ([]byte, []int)

func (*RemoveContainerResponse) Marshal

func (m *RemoveContainerResponse) Marshal() (dAtA []byte, err error)

func (*RemoveContainerResponse) MarshalTo

func (m *RemoveContainerResponse) MarshalTo(dAtA []byte) (int, error)

func (*RemoveContainerResponse) MarshalToSizedBuffer

func (m *RemoveContainerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RemoveContainerResponse) ProtoMessage

func (*RemoveContainerResponse) ProtoMessage()

func (*RemoveContainerResponse) Reset

func (m *RemoveContainerResponse) Reset()

func (*RemoveContainerResponse) Size

func (m *RemoveContainerResponse) Size() (n int)

func (*RemoveContainerResponse) String

func (this *RemoveContainerResponse) String() string

func (*RemoveContainerResponse) Unmarshal

func (m *RemoveContainerResponse) Unmarshal(dAtA []byte) error

func (*RemoveContainerResponse) XXX_DiscardUnknown

func (m *RemoveContainerResponse) XXX_DiscardUnknown()

func (*RemoveContainerResponse) XXX_Marshal

func (m *RemoveContainerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemoveContainerResponse) XXX_Merge

func (m *RemoveContainerResponse) XXX_Merge(src proto.Message)

func (*RemoveContainerResponse) XXX_Size

func (m *RemoveContainerResponse) XXX_Size() int

func (*RemoveContainerResponse) XXX_Unmarshal

func (m *RemoveContainerResponse) XXX_Unmarshal(b []byte) error

type RemoveImageRequest

type RemoveImageRequest struct {
	// Spec of the image to remove.
	Image                *ImageSpec `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*RemoveImageRequest) Descriptor

func (*RemoveImageRequest) Descriptor() ([]byte, []int)

func (*RemoveImageRequest) GetImage

func (m *RemoveImageRequest) GetImage() *ImageSpec

func (*RemoveImageRequest) Marshal

func (m *RemoveImageRequest) Marshal() (dAtA []byte, err error)

func (*RemoveImageRequest) MarshalTo

func (m *RemoveImageRequest) MarshalTo(dAtA []byte) (int, error)

func (*RemoveImageRequest) MarshalToSizedBuffer

func (m *RemoveImageRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RemoveImageRequest) ProtoMessage

func (*RemoveImageRequest) ProtoMessage()

func (*RemoveImageRequest) Reset

func (m *RemoveImageRequest) Reset()

func (*RemoveImageRequest) Size

func (m *RemoveImageRequest) Size() (n int)

func (*RemoveImageRequest) String

func (this *RemoveImageRequest) String() string

func (*RemoveImageRequest) Unmarshal

func (m *RemoveImageRequest) Unmarshal(dAtA []byte) error

func (*RemoveImageRequest) XXX_DiscardUnknown

func (m *RemoveImageRequest) XXX_DiscardUnknown()

func (*RemoveImageRequest) XXX_Marshal

func (m *RemoveImageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemoveImageRequest) XXX_Merge

func (m *RemoveImageRequest) XXX_Merge(src proto.Message)

func (*RemoveImageRequest) XXX_Size

func (m *RemoveImageRequest) XXX_Size() int

func (*RemoveImageRequest) XXX_Unmarshal

func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error

type RemoveImageResponse

type RemoveImageResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemoveImageResponse) Descriptor

func (*RemoveImageResponse) Descriptor() ([]byte, []int)

func (*RemoveImageResponse) Marshal

func (m *RemoveImageResponse) Marshal() (dAtA []byte, err error)

func (*RemoveImageResponse) MarshalTo

func (m *RemoveImageResponse) MarshalTo(dAtA []byte) (int, error)

func (*RemoveImageResponse) MarshalToSizedBuffer

func (m *RemoveImageResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RemoveImageResponse) ProtoMessage

func (*RemoveImageResponse) ProtoMessage()

func (*RemoveImageResponse) Reset

func (m *RemoveImageResponse) Reset()

func (*RemoveImageResponse) Size

func (m *RemoveImageResponse) Size() (n int)

func (*RemoveImageResponse) String

func (this *RemoveImageResponse) String() string

func (*RemoveImageResponse) Unmarshal

func (m *RemoveImageResponse) Unmarshal(dAtA []byte) error

func (*RemoveImageResponse) XXX_DiscardUnknown

func (m *RemoveImageResponse) XXX_DiscardUnknown()

func (*RemoveImageResponse) XXX_Marshal

func (m *RemoveImageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemoveImageResponse) XXX_Merge

func (m *RemoveImageResponse) XXX_Merge(src proto.Message)

func (*RemoveImageResponse) XXX_Size

func (m *RemoveImageResponse) XXX_Size() int

func (*RemoveImageResponse) XXX_Unmarshal

func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error

type RemovePodSandboxRequest

type RemovePodSandboxRequest struct {
	// ID of the PodSandbox to remove.
	PodSandboxId         string   `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemovePodSandboxRequest) Descriptor

func (*RemovePodSandboxRequest) Descriptor() ([]byte, []int)

func (*RemovePodSandboxRequest) GetPodSandboxId

func (m *RemovePodSandboxRequest) GetPodSandboxId() string

func (*RemovePodSandboxRequest) Marshal

func (m *RemovePodSandboxRequest) Marshal() (dAtA []byte, err error)

func (*RemovePodSandboxRequest) MarshalTo

func (m *RemovePodSandboxRequest) MarshalTo(dAtA []byte) (int, error)

func (*RemovePodSandboxRequest) MarshalToSizedBuffer

func (m *RemovePodSandboxRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RemovePodSandboxRequest) ProtoMessage

func (*RemovePodSandboxRequest) ProtoMessage()

func (*RemovePodSandboxRequest) Reset

func (m *RemovePodSandboxRequest) Reset()

func (*RemovePodSandboxRequest) Size

func (m *RemovePodSandboxRequest) Size() (n int)

func (*RemovePodSandboxRequest) String

func (this *RemovePodSandboxRequest) String() string

func (*RemovePodSandboxRequest) Unmarshal

func (m *RemovePodSandboxRequest) Unmarshal(dAtA []byte) error

func (*RemovePodSandboxRequest) XXX_DiscardUnknown

func (m *RemovePodSandboxRequest) XXX_DiscardUnknown()

func (*RemovePodSandboxRequest) XXX_Marshal

func (m *RemovePodSandboxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemovePodSandboxRequest) XXX_Merge

func (m *RemovePodSandboxRequest) XXX_Merge(src proto.Message)

func (*RemovePodSandboxRequest) XXX_Size

func (m *RemovePodSandboxRequest) XXX_Size() int

func (*RemovePodSandboxRequest) XXX_Unmarshal

func (m *RemovePodSandboxRequest) XXX_Unmarshal(b []byte) error

type RemovePodSandboxResponse

type RemovePodSandboxResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RemovePodSandboxResponse) Descriptor

func (*RemovePodSandboxResponse) Descriptor() ([]byte, []int)

func (*RemovePodSandboxResponse) Marshal

func (m *RemovePodSandboxResponse) Marshal() (dAtA []byte, err error)

func (*RemovePodSandboxResponse) MarshalTo

func (m *RemovePodSandboxResponse) MarshalTo(dAtA []byte) (int, error)

func (*RemovePodSandboxResponse) MarshalToSizedBuffer

func (m *RemovePodSandboxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RemovePodSandboxResponse) ProtoMessage

func (*RemovePodSandboxResponse) ProtoMessage()

func (*RemovePodSandboxResponse) Reset

func (m *RemovePodSandboxResponse) Reset()

func (*RemovePodSandboxResponse) Size

func (m *RemovePodSandboxResponse) Size() (n int)

func (*RemovePodSandboxResponse) String

func (this *RemovePodSandboxResponse) String() string

func (*RemovePodSandboxResponse) Unmarshal

func (m *RemovePodSandboxResponse) Unmarshal(dAtA []byte) error

func (*RemovePodSandboxResponse) XXX_DiscardUnknown

func (m *RemovePodSandboxResponse) XXX_DiscardUnknown()

func (*RemovePodSandboxResponse) XXX_Marshal

func (m *RemovePodSandboxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemovePodSandboxResponse) XXX_Merge

func (m *RemovePodSandboxResponse) XXX_Merge(src proto.Message)

func (*RemovePodSandboxResponse) XXX_Size

func (m *RemovePodSandboxResponse) XXX_Size() int

func (*RemovePodSandboxResponse) XXX_Unmarshal

func (m *RemovePodSandboxResponse) XXX_Unmarshal(b []byte) error

type ReopenContainerLogRequest

type ReopenContainerLogRequest struct {
	// ID of the container for which to reopen the log.
	ContainerId          string   `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReopenContainerLogRequest) Descriptor

func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int)

func (*ReopenContainerLogRequest) GetContainerId

func (m *ReopenContainerLogRequest) GetContainerId() string

func (*ReopenContainerLogRequest) Marshal

func (m *ReopenContainerLogRequest) Marshal() (dAtA []byte, err error)

func (*ReopenContainerLogRequest) MarshalTo

func (m *ReopenContainerLogRequest) MarshalTo(dAtA []byte) (int, error)

func (*ReopenContainerLogRequest) MarshalToSizedBuffer

func (m *ReopenContainerLogRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReopenContainerLogRequest) ProtoMessage

func (*ReopenContainerLogRequest) ProtoMessage()

func (*ReopenContainerLogRequest) Reset

func (m *ReopenContainerLogRequest) Reset()

func (*ReopenContainerLogRequest) Size

func (m *ReopenContainerLogRequest) Size() (n int)

func (*ReopenContainerLogRequest) String

func (this *ReopenContainerLogRequest) String() string

func (*ReopenContainerLogRequest) Unmarshal

func (m *ReopenContainerLogRequest) Unmarshal(dAtA []byte) error

func (*ReopenContainerLogRequest) XXX_DiscardUnknown

func (m *ReopenContainerLogRequest) XXX_DiscardUnknown()

func (*ReopenContainerLogRequest) XXX_Marshal

func (m *ReopenContainerLogRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReopenContainerLogRequest) XXX_Merge

func (m *ReopenContainerLogRequest) XXX_Merge(src proto.Message)

func (*ReopenContainerLogRequest) XXX_Size

func (m *ReopenContainerLogRequest) XXX_Size() int

func (*ReopenContainerLogRequest) XXX_Unmarshal

func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error

type ReopenContainerLogResponse

type ReopenContainerLogResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReopenContainerLogResponse) Descriptor

func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int)

func (*ReopenContainerLogResponse) Marshal

func (m *ReopenContainerLogResponse) Marshal() (dAtA []byte, err error)

func (*ReopenContainerLogResponse) MarshalTo

func (m *ReopenContainerLogResponse) MarshalTo(dAtA []byte) (int, error)

func (*ReopenContainerLogResponse) MarshalToSizedBuffer

func (m *ReopenContainerLogResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ReopenContainerLogResponse) ProtoMessage

func (*ReopenContainerLogResponse) ProtoMessage()

func (*ReopenContainerLogResponse) Reset

func (m *ReopenContainerLogResponse) Reset()

func (*ReopenContainerLogResponse) Size

func (m *ReopenContainerLogResponse) Size() (n int)

func (*ReopenContainerLogResponse) String

func (this *ReopenContainerLogResponse) String() string

func (*ReopenContainerLogResponse) Unmarshal

func (m *ReopenContainerLogResponse) Unmarshal(dAtA []byte) error

func (*ReopenContainerLogResponse) XXX_DiscardUnknown

func (m *ReopenContainerLogResponse) XXX_DiscardUnknown()

func (*ReopenContainerLogResponse) XXX_Marshal

func (m *ReopenContainerLogResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReopenContainerLogResponse) XXX_Merge

func (m *ReopenContainerLogResponse) XXX_Merge(src proto.Message)

func (*ReopenContainerLogResponse) XXX_Size

func (m *ReopenContainerLogResponse) XXX_Size() int

func (*ReopenContainerLogResponse) XXX_Unmarshal

func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error

type RunPodSandboxRequest

type RunPodSandboxRequest struct {
	// Configuration for creating a PodSandbox.
	Config *PodSandboxConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// Named runtime configuration to use for this PodSandbox.
	// If the runtime handler is unknown, this request should be rejected.  An
	// empty string should select the default handler, equivalent to the
	// behavior before this feature was added.
	// See https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class/README.md
	RuntimeHandler       string   `protobuf:"bytes,2,opt,name=runtime_handler,json=runtimeHandler,proto3" json:"runtime_handler,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RunPodSandboxRequest) Descriptor

func (*RunPodSandboxRequest) Descriptor() ([]byte, []int)

func (*RunPodSandboxRequest) GetConfig

func (m *RunPodSandboxRequest) GetConfig() *PodSandboxConfig

func (*RunPodSandboxRequest) GetRuntimeHandler

func (m *RunPodSandboxRequest) GetRuntimeHandler() string

func (*RunPodSandboxRequest) Marshal

func (m *RunPodSandboxRequest) Marshal() (dAtA []byte, err error)

func (*RunPodSandboxRequest) MarshalTo

func (m *RunPodSandboxRequest) MarshalTo(dAtA []byte) (int, error)

func (*RunPodSandboxRequest) MarshalToSizedBuffer

func (m *RunPodSandboxRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RunPodSandboxRequest) ProtoMessage

func (*RunPodSandboxRequest) ProtoMessage()

func (*RunPodSandboxRequest) Reset

func (m *RunPodSandboxRequest) Reset()

func (*RunPodSandboxRequest) Size

func (m *RunPodSandboxRequest) Size() (n int)

func (*RunPodSandboxRequest) String

func (this *RunPodSandboxRequest) String() string

func (*RunPodSandboxRequest) Unmarshal

func (m *RunPodSandboxRequest) Unmarshal(dAtA []byte) error

func (*RunPodSandboxRequest) XXX_DiscardUnknown

func (m *RunPodSandboxRequest) XXX_DiscardUnknown()

func (*RunPodSandboxRequest) XXX_Marshal

func (m *RunPodSandboxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RunPodSandboxRequest) XXX_Merge

func (m *RunPodSandboxRequest) XXX_Merge(src proto.Message)

func (*RunPodSandboxRequest) XXX_Size

func (m *RunPodSandboxRequest) XXX_Size() int

func (*RunPodSandboxRequest) XXX_Unmarshal

func (m *RunPodSandboxRequest) XXX_Unmarshal(b []byte) error

type RunPodSandboxResponse

type RunPodSandboxResponse struct {
	// ID of the PodSandbox to run.
	PodSandboxId         string   `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RunPodSandboxResponse) Descriptor

func (*RunPodSandboxResponse) Descriptor() ([]byte, []int)

func (*RunPodSandboxResponse) GetPodSandboxId

func (m *RunPodSandboxResponse) GetPodSandboxId() string

func (*RunPodSandboxResponse) Marshal

func (m *RunPodSandboxResponse) Marshal() (dAtA []byte, err error)

func (*RunPodSandboxResponse) MarshalTo

func (m *RunPodSandboxResponse) MarshalTo(dAtA []byte) (int, error)

func (*RunPodSandboxResponse) MarshalToSizedBuffer

func (m *RunPodSandboxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RunPodSandboxResponse) ProtoMessage

func (*RunPodSandboxResponse) ProtoMessage()

func (*RunPodSandboxResponse) Reset

func (m *RunPodSandboxResponse) Reset()

func (*RunPodSandboxResponse) Size

func (m *RunPodSandboxResponse) Size() (n int)

func (*RunPodSandboxResponse) String

func (this *RunPodSandboxResponse) String() string

func (*RunPodSandboxResponse) Unmarshal

func (m *RunPodSandboxResponse) Unmarshal(dAtA []byte) error

func (*RunPodSandboxResponse) XXX_DiscardUnknown

func (m *RunPodSandboxResponse) XXX_DiscardUnknown()

func (*RunPodSandboxResponse) XXX_Marshal

func (m *RunPodSandboxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RunPodSandboxResponse) XXX_Merge

func (m *RunPodSandboxResponse) XXX_Merge(src proto.Message)

func (*RunPodSandboxResponse) XXX_Size

func (m *RunPodSandboxResponse) XXX_Size() int

func (*RunPodSandboxResponse) XXX_Unmarshal

func (m *RunPodSandboxResponse) XXX_Unmarshal(b []byte) error

type RuntimeCondition

type RuntimeCondition struct {
	// Type of runtime condition.
	Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// Status of the condition, one of true/false. Default: false.
	Status bool `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	// Brief CamelCase string containing reason for the condition's last transition.
	Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	// Human-readable message indicating details about last transition.
	Message              string   `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

RuntimeCondition contains condition information for the runtime. There are 2 kinds of runtime conditions: 1. Required conditions: Conditions are required for kubelet to work properly. If any required condition is unmet, the node will be not ready. The required conditions include:

  • RuntimeReady: RuntimeReady means the runtime is up and ready to accept basic containers e.g. container only needs host network.
  • NetworkReady: NetworkReady means the runtime network is up and ready to accept containers which require container network.

2. Optional conditions: Conditions are informative to the user, but kubelet will not rely on. Since condition type is an arbitrary string, all conditions not required are optional. These conditions will be exposed to users to help them understand the status of the system.

func (*RuntimeCondition) Descriptor

func (*RuntimeCondition) Descriptor() ([]byte, []int)

func (*RuntimeCondition) GetMessage

func (m *RuntimeCondition) GetMessage() string

func (*RuntimeCondition) GetReason

func (m *RuntimeCondition) GetReason() string

func (*RuntimeCondition) GetStatus

func (m *RuntimeCondition) GetStatus() bool

func (*RuntimeCondition) GetType

func (m *RuntimeCondition) GetType() string

func (*RuntimeCondition) Marshal

func (m *RuntimeCondition) Marshal() (dAtA []byte, err error)

func (*RuntimeCondition) MarshalTo

func (m *RuntimeCondition) MarshalTo(dAtA []byte) (int, error)

func (*RuntimeCondition) MarshalToSizedBuffer

func (m *RuntimeCondition) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RuntimeCondition) ProtoMessage

func (*RuntimeCondition) ProtoMessage()

func (*RuntimeCondition) Reset

func (m *RuntimeCondition) Reset()

func (*RuntimeCondition) Size

func (m *RuntimeCondition) Size() (n int)

func (*RuntimeCondition) String

func (this *RuntimeCondition) String() string

func (*RuntimeCondition) Unmarshal

func (m *RuntimeCondition) Unmarshal(dAtA []byte) error

func (*RuntimeCondition) XXX_DiscardUnknown

func (m *RuntimeCondition) XXX_DiscardUnknown()

func (*RuntimeCondition) XXX_Marshal

func (m *RuntimeCondition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RuntimeCondition) XXX_Merge

func (m *RuntimeCondition) XXX_Merge(src proto.Message)

func (*RuntimeCondition) XXX_Size

func (m *RuntimeCondition) XXX_Size() int

func (*RuntimeCondition) XXX_Unmarshal

func (m *RuntimeCondition) XXX_Unmarshal(b []byte) error

type RuntimeConfig

type RuntimeConfig struct {
	NetworkConfig        *NetworkConfig `protobuf:"bytes,1,opt,name=network_config,json=networkConfig,proto3" json:"network_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*RuntimeConfig) Descriptor

func (*RuntimeConfig) Descriptor() ([]byte, []int)

func (*RuntimeConfig) GetNetworkConfig

func (m *RuntimeConfig) GetNetworkConfig() *NetworkConfig

func (*RuntimeConfig) Marshal

func (m *RuntimeConfig) Marshal() (dAtA []byte, err error)

func (*RuntimeConfig) MarshalTo

func (m *RuntimeConfig) MarshalTo(dAtA []byte) (int, error)

func (*RuntimeConfig) MarshalToSizedBuffer

func (m *RuntimeConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RuntimeConfig) ProtoMessage

func (*RuntimeConfig) ProtoMessage()

func (*RuntimeConfig) Reset

func (m *RuntimeConfig) Reset()

func (*RuntimeConfig) Size

func (m *RuntimeConfig) Size() (n int)

func (*RuntimeConfig) String

func (this *RuntimeConfig) String() string

func (*RuntimeConfig) Unmarshal

func (m *RuntimeConfig) Unmarshal(dAtA []byte) error

func (*RuntimeConfig) XXX_DiscardUnknown

func (m *RuntimeConfig) XXX_DiscardUnknown()

func (*RuntimeConfig) XXX_Marshal

func (m *RuntimeConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RuntimeConfig) XXX_Merge

func (m *RuntimeConfig) XXX_Merge(src proto.Message)

func (*RuntimeConfig) XXX_Size

func (m *RuntimeConfig) XXX_Size() int

func (*RuntimeConfig) XXX_Unmarshal

func (m *RuntimeConfig) XXX_Unmarshal(b []byte) error

type RuntimeServiceClient

type RuntimeServiceClient interface {
	// Version returns the runtime name, runtime version, and runtime API version.
	Version(ctx context.Context, in *VersionRequest, opts ...grpc.CallOption) (*VersionResponse, error)
	// RunPodSandbox creates and starts a pod-level sandbox. Runtimes must ensure
	// the sandbox is in the ready state on success.
	RunPodSandbox(ctx context.Context, in *RunPodSandboxRequest, opts ...grpc.CallOption) (*RunPodSandboxResponse, error)
	// StopPodSandbox stops any running process that is part of the sandbox and
	// reclaims network resources (e.g., IP addresses) allocated to the sandbox.
	// If there are any running containers in the sandbox, they must be forcibly
	// terminated.
	// This call is idempotent, and must not return an error if all relevant
	// resources have already been reclaimed. kubelet will call StopPodSandbox
	// at least once before calling RemovePodSandbox. It will also attempt to
	// reclaim resources eagerly, as soon as a sandbox is not needed. Hence,
	// multiple StopPodSandbox calls are expected.
	StopPodSandbox(ctx context.Context, in *StopPodSandboxRequest, opts ...grpc.CallOption) (*StopPodSandboxResponse, error)
	// RemovePodSandbox removes the sandbox. If there are any running containers
	// in the sandbox, they must be forcibly terminated and removed.
	// This call is idempotent, and must not return an error if the sandbox has
	// already been removed.
	RemovePodSandbox(ctx context.Context, in *RemovePodSandboxRequest, opts ...grpc.CallOption) (*RemovePodSandboxResponse, error)
	// PodSandboxStatus returns the status of the PodSandbox. If the PodSandbox is not
	// present, returns an error.
	PodSandboxStatus(ctx context.Context, in *PodSandboxStatusRequest, opts ...grpc.CallOption) (*PodSandboxStatusResponse, error)
	// ListPodSandbox returns a list of PodSandboxes.
	ListPodSandbox(ctx context.Context, in *ListPodSandboxRequest, opts ...grpc.CallOption) (*ListPodSandboxResponse, error)
	// CreateContainer creates a new container in specified PodSandbox
	CreateContainer(ctx context.Context, in *CreateContainerRequest, opts ...grpc.CallOption) (*CreateContainerResponse, error)
	// StartContainer starts the container.
	StartContainer(ctx context.Context, in *StartContainerRequest, opts ...grpc.CallOption) (*StartContainerResponse, error)
	// StopContainer stops a running container with a grace period (i.e., timeout).
	// This call is idempotent, and must not return an error if the container has
	// already been stopped.
	// The runtime must forcibly kill the container after the grace period is
	// reached.
	StopContainer(ctx context.Context, in *StopContainerRequest, opts ...grpc.CallOption) (*StopContainerResponse, error)
	// RemoveContainer removes the container. If the container is running, the
	// container must be forcibly removed.
	// This call is idempotent, and must not return an error if the container has
	// already been removed.
	RemoveContainer(ctx context.Context, in *RemoveContainerRequest, opts ...grpc.CallOption) (*RemoveContainerResponse, error)
	// ListContainers lists all containers by filters.
	ListContainers(ctx context.Context, in *ListContainersRequest, opts ...grpc.CallOption) (*ListContainersResponse, error)
	// ContainerStatus returns status of the container. If the container is not
	// present, returns an error.
	ContainerStatus(ctx context.Context, in *ContainerStatusRequest, opts ...grpc.CallOption) (*ContainerStatusResponse, error)
	// UpdateContainerResources updates ContainerConfig of the container.
	UpdateContainerResources(ctx context.Context, in *UpdateContainerResourcesRequest, opts ...grpc.CallOption) (*UpdateContainerResourcesResponse, error)
	// ReopenContainerLog asks runtime to reopen the stdout/stderr log file
	// for the container. This is often called after the log file has been
	// rotated. If the container is not running, container runtime can choose
	// to either create a new log file and return nil, or return an error.
	// Once it returns error, new container log file MUST NOT be created.
	ReopenContainerLog(ctx context.Context, in *ReopenContainerLogRequest, opts ...grpc.CallOption) (*ReopenContainerLogResponse, error)
	// ExecSync runs a command in a container synchronously.
	ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error)
	// Exec prepares a streaming endpoint to execute a command in the container.
	Exec(ctx context.Context, in *ExecRequest, opts ...grpc.CallOption) (*ExecResponse, error)
	// Attach prepares a streaming endpoint to attach to a running container.
	Attach(ctx context.Context, in *AttachRequest, opts ...grpc.CallOption) (*AttachResponse, error)
	// PortForward prepares a streaming endpoint to forward ports from a PodSandbox.
	PortForward(ctx context.Context, in *PortForwardRequest, opts ...grpc.CallOption) (*PortForwardResponse, error)
	// ContainerStats returns stats of the container. If the container does not
	// exist, the call returns an error.
	ContainerStats(ctx context.Context, in *ContainerStatsRequest, opts ...grpc.CallOption) (*ContainerStatsResponse, error)
	// ListContainerStats returns stats of all running containers.
	ListContainerStats(ctx context.Context, in *ListContainerStatsRequest, opts ...grpc.CallOption) (*ListContainerStatsResponse, error)
	// UpdateRuntimeConfig updates the runtime configuration based on the given request.
	UpdateRuntimeConfig(ctx context.Context, in *UpdateRuntimeConfigRequest, opts ...grpc.CallOption) (*UpdateRuntimeConfigResponse, error)
	// Status returns the status of the runtime.
	Status(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (*StatusResponse, error)
}

RuntimeServiceClient is the client API for RuntimeService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewRuntimeServiceClient

func NewRuntimeServiceClient(cc *grpc.ClientConn) RuntimeServiceClient

type RuntimeServiceServer

type RuntimeServiceServer interface {
	// Version returns the runtime name, runtime version, and runtime API version.
	Version(context.Context, *VersionRequest) (*VersionResponse, error)
	// RunPodSandbox creates and starts a pod-level sandbox. Runtimes must ensure
	// the sandbox is in the ready state on success.
	RunPodSandbox(context.Context, *RunPodSandboxRequest) (*RunPodSandboxResponse, error)
	// StopPodSandbox stops any running process that is part of the sandbox and
	// reclaims network resources (e.g., IP addresses) allocated to the sandbox.
	// If there are any running containers in the sandbox, they must be forcibly
	// terminated.
	// This call is idempotent, and must not return an error if all relevant
	// resources have already been reclaimed. kubelet will call StopPodSandbox
	// at least once before calling RemovePodSandbox. It will also attempt to
	// reclaim resources eagerly, as soon as a sandbox is not needed. Hence,
	// multiple StopPodSandbox calls are expected.
	StopPodSandbox(context.Context, *StopPodSandboxRequest) (*StopPodSandboxResponse, error)
	// RemovePodSandbox removes the sandbox. If there are any running containers
	// in the sandbox, they must be forcibly terminated and removed.
	// This call is idempotent, and must not return an error if the sandbox has
	// already been removed.
	RemovePodSandbox(context.Context, *RemovePodSandboxRequest) (*RemovePodSandboxResponse, error)
	// PodSandboxStatus returns the status of the PodSandbox. If the PodSandbox is not
	// present, returns an error.
	PodSandboxStatus(context.Context, *PodSandboxStatusRequest) (*PodSandboxStatusResponse, error)
	// ListPodSandbox returns a list of PodSandboxes.
	ListPodSandbox(context.Context, *ListPodSandboxRequest) (*ListPodSandboxResponse, error)
	// CreateContainer creates a new container in specified PodSandbox
	CreateContainer(context.Context, *CreateContainerRequest) (*CreateContainerResponse, error)
	// StartContainer starts the container.
	StartContainer(context.Context, *StartContainerRequest) (*StartContainerResponse, error)
	// StopContainer stops a running container with a grace period (i.e., timeout).
	// This call is idempotent, and must not return an error if the container has
	// already been stopped.
	// The runtime must forcibly kill the container after the grace period is
	// reached.
	StopContainer(context.Context, *StopContainerRequest) (*StopContainerResponse, error)
	// RemoveContainer removes the container. If the container is running, the
	// container must be forcibly removed.
	// This call is idempotent, and must not return an error if the container has
	// already been removed.
	RemoveContainer(context.Context, *RemoveContainerRequest) (*RemoveContainerResponse, error)
	// ListContainers lists all containers by filters.
	ListContainers(context.Context, *ListContainersRequest) (*ListContainersResponse, error)
	// ContainerStatus returns status of the container. If the container is not
	// present, returns an error.
	ContainerStatus(context.Context, *ContainerStatusRequest) (*ContainerStatusResponse, error)
	// UpdateContainerResources updates ContainerConfig of the container.
	UpdateContainerResources(context.Context, *UpdateContainerResourcesRequest) (*UpdateContainerResourcesResponse, error)
	// ReopenContainerLog asks runtime to reopen the stdout/stderr log file
	// for the container. This is often called after the log file has been
	// rotated. If the container is not running, container runtime can choose
	// to either create a new log file and return nil, or return an error.
	// Once it returns error, new container log file MUST NOT be created.
	ReopenContainerLog(context.Context, *ReopenContainerLogRequest) (*ReopenContainerLogResponse, error)
	// ExecSync runs a command in a container synchronously.
	ExecSync(context.Context, *ExecSyncRequest) (*ExecSyncResponse, error)
	// Exec prepares a streaming endpoint to execute a command in the container.
	Exec(context.Context, *ExecRequest) (*ExecResponse, error)
	// Attach prepares a streaming endpoint to attach to a running container.
	Attach(context.Context, *AttachRequest) (*AttachResponse, error)
	// PortForward prepares a streaming endpoint to forward ports from a PodSandbox.
	PortForward(context.Context, *PortForwardRequest) (*PortForwardResponse, error)
	// ContainerStats returns stats of the container. If the container does not
	// exist, the call returns an error.
	ContainerStats(context.Context, *ContainerStatsRequest) (*ContainerStatsResponse, error)
	// ListContainerStats returns stats of all running containers.
	ListContainerStats(context.Context, *ListContainerStatsRequest) (*ListContainerStatsResponse, error)
	// UpdateRuntimeConfig updates the runtime configuration based on the given request.
	UpdateRuntimeConfig(context.Context, *UpdateRuntimeConfigRequest) (*UpdateRuntimeConfigResponse, error)
	// Status returns the status of the runtime.
	Status(context.Context, *StatusRequest) (*StatusResponse, error)
}

RuntimeServiceServer is the server API for RuntimeService service.

type RuntimeStatus

type RuntimeStatus struct {
	// List of current observed runtime conditions.
	Conditions           []*RuntimeCondition `protobuf:"bytes,1,rep,name=conditions,proto3" json:"conditions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

RuntimeStatus is information about the current status of the runtime.

func (*RuntimeStatus) Descriptor

func (*RuntimeStatus) Descriptor() ([]byte, []int)

func (*RuntimeStatus) GetConditions

func (m *RuntimeStatus) GetConditions() []*RuntimeCondition

func (*RuntimeStatus) Marshal

func (m *RuntimeStatus) Marshal() (dAtA []byte, err error)

func (*RuntimeStatus) MarshalTo

func (m *RuntimeStatus) MarshalTo(dAtA []byte) (int, error)

func (*RuntimeStatus) MarshalToSizedBuffer

func (m *RuntimeStatus) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RuntimeStatus) ProtoMessage

func (*RuntimeStatus) ProtoMessage()

func (*RuntimeStatus) Reset

func (m *RuntimeStatus) Reset()

func (*RuntimeStatus) Size

func (m *RuntimeStatus) Size() (n int)

func (*RuntimeStatus) String

func (this *RuntimeStatus) String() string

func (*RuntimeStatus) Unmarshal

func (m *RuntimeStatus) Unmarshal(dAtA []byte) error

func (*RuntimeStatus) XXX_DiscardUnknown

func (m *RuntimeStatus) XXX_DiscardUnknown()

func (*RuntimeStatus) XXX_Marshal

func (m *RuntimeStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RuntimeStatus) XXX_Merge

func (m *RuntimeStatus) XXX_Merge(src proto.Message)

func (*RuntimeStatus) XXX_Size

func (m *RuntimeStatus) XXX_Size() int

func (*RuntimeStatus) XXX_Unmarshal

func (m *RuntimeStatus) XXX_Unmarshal(b []byte) error

type SELinuxOption

type SELinuxOption struct {
	User                 string   `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	Role                 string   `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
	Type                 string   `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	Level                string   `protobuf:"bytes,4,opt,name=level,proto3" json:"level,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

SELinuxOption are the labels to be applied to the container.

func (*SELinuxOption) Descriptor

func (*SELinuxOption) Descriptor() ([]byte, []int)

func (*SELinuxOption) GetLevel

func (m *SELinuxOption) GetLevel() string

func (*SELinuxOption) GetRole

func (m *SELinuxOption) GetRole() string

func (*SELinuxOption) GetType

func (m *SELinuxOption) GetType() string

func (*SELinuxOption) GetUser

func (m *SELinuxOption) GetUser() string

func (*SELinuxOption) Marshal

func (m *SELinuxOption) Marshal() (dAtA []byte, err error)

func (*SELinuxOption) MarshalTo

func (m *SELinuxOption) MarshalTo(dAtA []byte) (int, error)

func (*SELinuxOption) MarshalToSizedBuffer

func (m *SELinuxOption) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SELinuxOption) ProtoMessage

func (*SELinuxOption) ProtoMessage()

func (*SELinuxOption) Reset

func (m *SELinuxOption) Reset()

func (*SELinuxOption) Size

func (m *SELinuxOption) Size() (n int)

func (*SELinuxOption) String

func (this *SELinuxOption) String() string

func (*SELinuxOption) Unmarshal

func (m *SELinuxOption) Unmarshal(dAtA []byte) error

func (*SELinuxOption) XXX_DiscardUnknown

func (m *SELinuxOption) XXX_DiscardUnknown()

func (*SELinuxOption) XXX_Marshal

func (m *SELinuxOption) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SELinuxOption) XXX_Merge

func (m *SELinuxOption) XXX_Merge(src proto.Message)

func (*SELinuxOption) XXX_Size

func (m *SELinuxOption) XXX_Size() int

func (*SELinuxOption) XXX_Unmarshal

func (m *SELinuxOption) XXX_Unmarshal(b []byte) error

type SecurityProfile

type SecurityProfile struct {
	// Indicator which `ProfileType` should be applied.
	ProfileType SecurityProfile_ProfileType `` /* 139-byte string literal not displayed */
	// Indicates that a pre-defined profile on the node should be used.
	// Must only be set if `ProfileType` is `Localhost`.
	// For seccomp, it must be an absolute path to the seccomp profile.
	// For AppArmor, this field is the AppArmor `<profile name>/`
	LocalhostRef         string   `protobuf:"bytes,2,opt,name=localhost_ref,json=localhostRef,proto3" json:"localhost_ref,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

A security profile which can be used for sandboxes and containers.

func (*SecurityProfile) Descriptor

func (*SecurityProfile) Descriptor() ([]byte, []int)

func (*SecurityProfile) GetLocalhostRef

func (m *SecurityProfile) GetLocalhostRef() string

func (*SecurityProfile) GetProfileType

func (m *SecurityProfile) GetProfileType() SecurityProfile_ProfileType

func (*SecurityProfile) Marshal

func (m *SecurityProfile) Marshal() (dAtA []byte, err error)

func (*SecurityProfile) MarshalTo

func (m *SecurityProfile) MarshalTo(dAtA []byte) (int, error)

func (*SecurityProfile) MarshalToSizedBuffer

func (m *SecurityProfile) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SecurityProfile) ProtoMessage

func (*SecurityProfile) ProtoMessage()

func (*SecurityProfile) Reset

func (m *SecurityProfile) Reset()

func (*SecurityProfile) Size

func (m *SecurityProfile) Size() (n int)

func (*SecurityProfile) String

func (this *SecurityProfile) String() string

func (*SecurityProfile) Unmarshal

func (m *SecurityProfile) Unmarshal(dAtA []byte) error

func (*SecurityProfile) XXX_DiscardUnknown

func (m *SecurityProfile) XXX_DiscardUnknown()

func (*SecurityProfile) XXX_Marshal

func (m *SecurityProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SecurityProfile) XXX_Merge

func (m *SecurityProfile) XXX_Merge(src proto.Message)

func (*SecurityProfile) XXX_Size

func (m *SecurityProfile) XXX_Size() int

func (*SecurityProfile) XXX_Unmarshal

func (m *SecurityProfile) XXX_Unmarshal(b []byte) error

type SecurityProfile_ProfileType

type SecurityProfile_ProfileType int32

Available profile types.

const (
	// The container runtime default profile should be used.
	SecurityProfile_RuntimeDefault SecurityProfile_ProfileType = 0
	// Disable the feature for the sandbox or the container.
	SecurityProfile_Unconfined SecurityProfile_ProfileType = 1
	// A pre-defined profile on the node should be used.
	SecurityProfile_Localhost SecurityProfile_ProfileType = 2
)

func (SecurityProfile_ProfileType) EnumDescriptor

func (SecurityProfile_ProfileType) EnumDescriptor() ([]byte, []int)

func (SecurityProfile_ProfileType) String

type StartContainerRequest

type StartContainerRequest struct {
	// ID of the container to start.
	ContainerId          string   `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StartContainerRequest) Descriptor

func (*StartContainerRequest) Descriptor() ([]byte, []int)

func (*StartContainerRequest) GetContainerId

func (m *StartContainerRequest) GetContainerId() string

func (*StartContainerRequest) Marshal

func (m *StartContainerRequest) Marshal() (dAtA []byte, err error)

func (*StartContainerRequest) MarshalTo

func (m *StartContainerRequest) MarshalTo(dAtA []byte) (int, error)

func (*StartContainerRequest) MarshalToSizedBuffer

func (m *StartContainerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StartContainerRequest) ProtoMessage

func (*StartContainerRequest) ProtoMessage()

func (*StartContainerRequest) Reset

func (m *StartContainerRequest) Reset()

func (*StartContainerRequest) Size

func (m *StartContainerRequest) Size() (n int)

func (*StartContainerRequest) String

func (this *StartContainerRequest) String() string

func (*StartContainerRequest) Unmarshal

func (m *StartContainerRequest) Unmarshal(dAtA []byte) error

func (*StartContainerRequest) XXX_DiscardUnknown

func (m *StartContainerRequest) XXX_DiscardUnknown()

func (*StartContainerRequest) XXX_Marshal

func (m *StartContainerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StartContainerRequest) XXX_Merge

func (m *StartContainerRequest) XXX_Merge(src proto.Message)

func (*StartContainerRequest) XXX_Size

func (m *StartContainerRequest) XXX_Size() int

func (*StartContainerRequest) XXX_Unmarshal

func (m *StartContainerRequest) XXX_Unmarshal(b []byte) error

type StartContainerResponse

type StartContainerResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StartContainerResponse) Descriptor

func (*StartContainerResponse) Descriptor() ([]byte, []int)

func (*StartContainerResponse) Marshal

func (m *StartContainerResponse) Marshal() (dAtA []byte, err error)

func (*StartContainerResponse) MarshalTo

func (m *StartContainerResponse) MarshalTo(dAtA []byte) (int, error)

func (*StartContainerResponse) MarshalToSizedBuffer

func (m *StartContainerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StartContainerResponse) ProtoMessage

func (*StartContainerResponse) ProtoMessage()

func (*StartContainerResponse) Reset

func (m *StartContainerResponse) Reset()

func (*StartContainerResponse) Size

func (m *StartContainerResponse) Size() (n int)

func (*StartContainerResponse) String

func (this *StartContainerResponse) String() string

func (*StartContainerResponse) Unmarshal

func (m *StartContainerResponse) Unmarshal(dAtA []byte) error

func (*StartContainerResponse) XXX_DiscardUnknown

func (m *StartContainerResponse) XXX_DiscardUnknown()

func (*StartContainerResponse) XXX_Marshal

func (m *StartContainerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StartContainerResponse) XXX_Merge

func (m *StartContainerResponse) XXX_Merge(src proto.Message)

func (*StartContainerResponse) XXX_Size

func (m *StartContainerResponse) XXX_Size() int

func (*StartContainerResponse) XXX_Unmarshal

func (m *StartContainerResponse) XXX_Unmarshal(b []byte) error

type StatusRequest

type StatusRequest struct {
	// Verbose indicates whether to return extra information about the runtime.
	Verbose              bool     `protobuf:"varint,1,opt,name=verbose,proto3" json:"verbose,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StatusRequest) Descriptor

func (*StatusRequest) Descriptor() ([]byte, []int)

func (*StatusRequest) GetVerbose

func (m *StatusRequest) GetVerbose() bool

func (*StatusRequest) Marshal

func (m *StatusRequest) Marshal() (dAtA []byte, err error)

func (*StatusRequest) MarshalTo

func (m *StatusRequest) MarshalTo(dAtA []byte) (int, error)

func (*StatusRequest) MarshalToSizedBuffer

func (m *StatusRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatusRequest) ProtoMessage

func (*StatusRequest) ProtoMessage()

func (*StatusRequest) Reset

func (m *StatusRequest) Reset()

func (*StatusRequest) Size

func (m *StatusRequest) Size() (n int)

func (*StatusRequest) String

func (this *StatusRequest) String() string

func (*StatusRequest) Unmarshal

func (m *StatusRequest) Unmarshal(dAtA []byte) error

func (*StatusRequest) XXX_DiscardUnknown

func (m *StatusRequest) XXX_DiscardUnknown()

func (*StatusRequest) XXX_Marshal

func (m *StatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatusRequest) XXX_Merge

func (m *StatusRequest) XXX_Merge(src proto.Message)

func (*StatusRequest) XXX_Size

func (m *StatusRequest) XXX_Size() int

func (*StatusRequest) XXX_Unmarshal

func (m *StatusRequest) XXX_Unmarshal(b []byte) error

type StatusResponse

type StatusResponse struct {
	// Status of the Runtime.
	Status *RuntimeStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	// Info is extra information of the Runtime. The key could be arbitrary string, and
	// value should be in json format. The information could include anything useful for
	// debug, e.g. plugins used by the container runtime.
	// It should only be returned non-empty when Verbose is true.
	Info                 map[string]string `` /* 149-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*StatusResponse) Descriptor

func (*StatusResponse) Descriptor() ([]byte, []int)

func (*StatusResponse) GetInfo

func (m *StatusResponse) GetInfo() map[string]string

func (*StatusResponse) GetStatus

func (m *StatusResponse) GetStatus() *RuntimeStatus

func (*StatusResponse) Marshal

func (m *StatusResponse) Marshal() (dAtA []byte, err error)

func (*StatusResponse) MarshalTo

func (m *StatusResponse) MarshalTo(dAtA []byte) (int, error)

func (*StatusResponse) MarshalToSizedBuffer

func (m *StatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StatusResponse) ProtoMessage

func (*StatusResponse) ProtoMessage()

func (*StatusResponse) Reset

func (m *StatusResponse) Reset()

func (*StatusResponse) Size

func (m *StatusResponse) Size() (n int)

func (*StatusResponse) String

func (this *StatusResponse) String() string

func (*StatusResponse) Unmarshal

func (m *StatusResponse) Unmarshal(dAtA []byte) error

func (*StatusResponse) XXX_DiscardUnknown

func (m *StatusResponse) XXX_DiscardUnknown()

func (*StatusResponse) XXX_Marshal

func (m *StatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatusResponse) XXX_Merge

func (m *StatusResponse) XXX_Merge(src proto.Message)

func (*StatusResponse) XXX_Size

func (m *StatusResponse) XXX_Size() int

func (*StatusResponse) XXX_Unmarshal

func (m *StatusResponse) XXX_Unmarshal(b []byte) error

type StopContainerRequest

type StopContainerRequest struct {
	// ID of the container to stop.
	ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	// Timeout in seconds to wait for the container to stop before forcibly
	// terminating it. Default: 0 (forcibly terminate the container immediately)
	Timeout              int64    `protobuf:"varint,2,opt,name=timeout,proto3" json:"timeout,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StopContainerRequest) Descriptor

func (*StopContainerRequest) Descriptor() ([]byte, []int)

func (*StopContainerRequest) GetContainerId

func (m *StopContainerRequest) GetContainerId() string

func (*StopContainerRequest) GetTimeout

func (m *StopContainerRequest) GetTimeout() int64

func (*StopContainerRequest) Marshal

func (m *StopContainerRequest) Marshal() (dAtA []byte, err error)

func (*StopContainerRequest) MarshalTo

func (m *StopContainerRequest) MarshalTo(dAtA []byte) (int, error)

func (*StopContainerRequest) MarshalToSizedBuffer

func (m *StopContainerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StopContainerRequest) ProtoMessage

func (*StopContainerRequest) ProtoMessage()

func (*StopContainerRequest) Reset

func (m *StopContainerRequest) Reset()

func (*StopContainerRequest) Size

func (m *StopContainerRequest) Size() (n int)

func (*StopContainerRequest) String

func (this *StopContainerRequest) String() string

func (*StopContainerRequest) Unmarshal

func (m *StopContainerRequest) Unmarshal(dAtA []byte) error

func (*StopContainerRequest) XXX_DiscardUnknown

func (m *StopContainerRequest) XXX_DiscardUnknown()

func (*StopContainerRequest) XXX_Marshal

func (m *StopContainerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopContainerRequest) XXX_Merge

func (m *StopContainerRequest) XXX_Merge(src proto.Message)

func (*StopContainerRequest) XXX_Size

func (m *StopContainerRequest) XXX_Size() int

func (*StopContainerRequest) XXX_Unmarshal

func (m *StopContainerRequest) XXX_Unmarshal(b []byte) error

type StopContainerResponse

type StopContainerResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StopContainerResponse) Descriptor

func (*StopContainerResponse) Descriptor() ([]byte, []int)

func (*StopContainerResponse) Marshal

func (m *StopContainerResponse) Marshal() (dAtA []byte, err error)

func (*StopContainerResponse) MarshalTo

func (m *StopContainerResponse) MarshalTo(dAtA []byte) (int, error)

func (*StopContainerResponse) MarshalToSizedBuffer

func (m *StopContainerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StopContainerResponse) ProtoMessage

func (*StopContainerResponse) ProtoMessage()

func (*StopContainerResponse) Reset

func (m *StopContainerResponse) Reset()

func (*StopContainerResponse) Size

func (m *StopContainerResponse) Size() (n int)

func (*StopContainerResponse) String

func (this *StopContainerResponse) String() string

func (*StopContainerResponse) Unmarshal

func (m *StopContainerResponse) Unmarshal(dAtA []byte) error

func (*StopContainerResponse) XXX_DiscardUnknown

func (m *StopContainerResponse) XXX_DiscardUnknown()

func (*StopContainerResponse) XXX_Marshal

func (m *StopContainerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopContainerResponse) XXX_Merge

func (m *StopContainerResponse) XXX_Merge(src proto.Message)

func (*StopContainerResponse) XXX_Size

func (m *StopContainerResponse) XXX_Size() int

func (*StopContainerResponse) XXX_Unmarshal

func (m *StopContainerResponse) XXX_Unmarshal(b []byte) error

type StopPodSandboxRequest

type StopPodSandboxRequest struct {
	// ID of the PodSandbox to stop.
	PodSandboxId         string   `protobuf:"bytes,1,opt,name=pod_sandbox_id,json=podSandboxId,proto3" json:"pod_sandbox_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StopPodSandboxRequest) Descriptor

func (*StopPodSandboxRequest) Descriptor() ([]byte, []int)

func (*StopPodSandboxRequest) GetPodSandboxId

func (m *StopPodSandboxRequest) GetPodSandboxId() string

func (*StopPodSandboxRequest) Marshal

func (m *StopPodSandboxRequest) Marshal() (dAtA []byte, err error)

func (*StopPodSandboxRequest) MarshalTo

func (m *StopPodSandboxRequest) MarshalTo(dAtA []byte) (int, error)

func (*StopPodSandboxRequest) MarshalToSizedBuffer

func (m *StopPodSandboxRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StopPodSandboxRequest) ProtoMessage

func (*StopPodSandboxRequest) ProtoMessage()

func (*StopPodSandboxRequest) Reset

func (m *StopPodSandboxRequest) Reset()

func (*StopPodSandboxRequest) Size

func (m *StopPodSandboxRequest) Size() (n int)

func (*StopPodSandboxRequest) String

func (this *StopPodSandboxRequest) String() string

func (*StopPodSandboxRequest) Unmarshal

func (m *StopPodSandboxRequest) Unmarshal(dAtA []byte) error

func (*StopPodSandboxRequest) XXX_DiscardUnknown

func (m *StopPodSandboxRequest) XXX_DiscardUnknown()

func (*StopPodSandboxRequest) XXX_Marshal

func (m *StopPodSandboxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopPodSandboxRequest) XXX_Merge

func (m *StopPodSandboxRequest) XXX_Merge(src proto.Message)

func (*StopPodSandboxRequest) XXX_Size

func (m *StopPodSandboxRequest) XXX_Size() int

func (*StopPodSandboxRequest) XXX_Unmarshal

func (m *StopPodSandboxRequest) XXX_Unmarshal(b []byte) error

type StopPodSandboxResponse

type StopPodSandboxResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StopPodSandboxResponse) Descriptor

func (*StopPodSandboxResponse) Descriptor() ([]byte, []int)

func (*StopPodSandboxResponse) Marshal

func (m *StopPodSandboxResponse) Marshal() (dAtA []byte, err error)

func (*StopPodSandboxResponse) MarshalTo

func (m *StopPodSandboxResponse) MarshalTo(dAtA []byte) (int, error)

func (*StopPodSandboxResponse) MarshalToSizedBuffer

func (m *StopPodSandboxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StopPodSandboxResponse) ProtoMessage

func (*StopPodSandboxResponse) ProtoMessage()

func (*StopPodSandboxResponse) Reset

func (m *StopPodSandboxResponse) Reset()

func (*StopPodSandboxResponse) Size

func (m *StopPodSandboxResponse) Size() (n int)

func (*StopPodSandboxResponse) String

func (this *StopPodSandboxResponse) String() string

func (*StopPodSandboxResponse) Unmarshal

func (m *StopPodSandboxResponse) Unmarshal(dAtA []byte) error

func (*StopPodSandboxResponse) XXX_DiscardUnknown

func (m *StopPodSandboxResponse) XXX_DiscardUnknown()

func (*StopPodSandboxResponse) XXX_Marshal

func (m *StopPodSandboxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopPodSandboxResponse) XXX_Merge

func (m *StopPodSandboxResponse) XXX_Merge(src proto.Message)

func (*StopPodSandboxResponse) XXX_Size

func (m *StopPodSandboxResponse) XXX_Size() int

func (*StopPodSandboxResponse) XXX_Unmarshal

func (m *StopPodSandboxResponse) XXX_Unmarshal(b []byte) error

type UInt64Value

type UInt64Value struct {
	// The value.
	Value                uint64   `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UInt64Value is the wrapper of uint64.

func (*UInt64Value) Descriptor

func (*UInt64Value) Descriptor() ([]byte, []int)

func (*UInt64Value) GetValue

func (m *UInt64Value) GetValue() uint64

func (*UInt64Value) Marshal

func (m *UInt64Value) Marshal() (dAtA []byte, err error)

func (*UInt64Value) MarshalTo

func (m *UInt64Value) MarshalTo(dAtA []byte) (int, error)

func (*UInt64Value) MarshalToSizedBuffer

func (m *UInt64Value) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UInt64Value) ProtoMessage

func (*UInt64Value) ProtoMessage()

func (*UInt64Value) Reset

func (m *UInt64Value) Reset()

func (*UInt64Value) Size

func (m *UInt64Value) Size() (n int)

func (*UInt64Value) String

func (this *UInt64Value) String() string

func (*UInt64Value) Unmarshal

func (m *UInt64Value) Unmarshal(dAtA []byte) error

func (*UInt64Value) XXX_DiscardUnknown

func (m *UInt64Value) XXX_DiscardUnknown()

func (*UInt64Value) XXX_Marshal

func (m *UInt64Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UInt64Value) XXX_Merge

func (m *UInt64Value) XXX_Merge(src proto.Message)

func (*UInt64Value) XXX_Size

func (m *UInt64Value) XXX_Size() int

func (*UInt64Value) XXX_Unmarshal

func (m *UInt64Value) XXX_Unmarshal(b []byte) error

type UnimplementedImageServiceServer

type UnimplementedImageServiceServer struct {
}

UnimplementedImageServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedImageServiceServer) ImageFsInfo

func (*UnimplementedImageServiceServer) ImageStatus

func (*UnimplementedImageServiceServer) ListImages

func (*UnimplementedImageServiceServer) PullImage

func (*UnimplementedImageServiceServer) RemoveImage

type UnimplementedRuntimeServiceServer

type UnimplementedRuntimeServiceServer struct {
}

UnimplementedRuntimeServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedRuntimeServiceServer) Attach

func (*UnimplementedRuntimeServiceServer) ContainerStats

func (*UnimplementedRuntimeServiceServer) ContainerStatus

func (*UnimplementedRuntimeServiceServer) CreateContainer

func (*UnimplementedRuntimeServiceServer) Exec

func (*UnimplementedRuntimeServiceServer) ExecSync

func (*UnimplementedRuntimeServiceServer) ListContainerStats

func (*UnimplementedRuntimeServiceServer) ListContainers

func (*UnimplementedRuntimeServiceServer) ListPodSandbox

func (*UnimplementedRuntimeServiceServer) PodSandboxStatus

func (*UnimplementedRuntimeServiceServer) PortForward

func (*UnimplementedRuntimeServiceServer) RemoveContainer

func (*UnimplementedRuntimeServiceServer) RemovePodSandbox

func (*UnimplementedRuntimeServiceServer) ReopenContainerLog

func (*UnimplementedRuntimeServiceServer) RunPodSandbox

func (*UnimplementedRuntimeServiceServer) StartContainer

func (*UnimplementedRuntimeServiceServer) Status

func (*UnimplementedRuntimeServiceServer) StopContainer

func (*UnimplementedRuntimeServiceServer) StopPodSandbox

func (*UnimplementedRuntimeServiceServer) UpdateContainerResources

func (*UnimplementedRuntimeServiceServer) UpdateRuntimeConfig

func (*UnimplementedRuntimeServiceServer) Version

type UpdateContainerResourcesRequest

type UpdateContainerResourcesRequest struct {
	// ID of the container to update.
	ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
	// Resource configuration specific to Linux containers.
	Linux *LinuxContainerResources `protobuf:"bytes,2,opt,name=linux,proto3" json:"linux,omitempty"`
	// Resource configuration specific to Windows containers.
	Windows *WindowsContainerResources `protobuf:"bytes,3,opt,name=windows,proto3" json:"windows,omitempty"`
	// Unstructured key-value map holding arbitrary additional information for
	// container resources updating. This can be used for specifying experimental
	// resources to update or other options to use when updating the container.
	Annotations          map[string]string `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*UpdateContainerResourcesRequest) Descriptor

func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int)

func (*UpdateContainerResourcesRequest) GetAnnotations

func (m *UpdateContainerResourcesRequest) GetAnnotations() map[string]string

func (*UpdateContainerResourcesRequest) GetContainerId

func (m *UpdateContainerResourcesRequest) GetContainerId() string

func (*UpdateContainerResourcesRequest) GetLinux

func (*UpdateContainerResourcesRequest) GetWindows

func (*UpdateContainerResourcesRequest) Marshal

func (m *UpdateContainerResourcesRequest) Marshal() (dAtA []byte, err error)

func (*UpdateContainerResourcesRequest) MarshalTo

func (m *UpdateContainerResourcesRequest) MarshalTo(dAtA []byte) (int, error)

func (*UpdateContainerResourcesRequest) MarshalToSizedBuffer

func (m *UpdateContainerResourcesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateContainerResourcesRequest) ProtoMessage

func (*UpdateContainerResourcesRequest) ProtoMessage()

func (*UpdateContainerResourcesRequest) Reset

func (*UpdateContainerResourcesRequest) Size

func (m *UpdateContainerResourcesRequest) Size() (n int)

func (*UpdateContainerResourcesRequest) String

func (this *UpdateContainerResourcesRequest) String() string

func (*UpdateContainerResourcesRequest) Unmarshal

func (m *UpdateContainerResourcesRequest) Unmarshal(dAtA []byte) error

func (*UpdateContainerResourcesRequest) XXX_DiscardUnknown

func (m *UpdateContainerResourcesRequest) XXX_DiscardUnknown()

func (*UpdateContainerResourcesRequest) XXX_Marshal

func (m *UpdateContainerResourcesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateContainerResourcesRequest) XXX_Merge

func (m *UpdateContainerResourcesRequest) XXX_Merge(src proto.Message)

func (*UpdateContainerResourcesRequest) XXX_Size

func (m *UpdateContainerResourcesRequest) XXX_Size() int

func (*UpdateContainerResourcesRequest) XXX_Unmarshal

func (m *UpdateContainerResourcesRequest) XXX_Unmarshal(b []byte) error

type UpdateContainerResourcesResponse

type UpdateContainerResourcesResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateContainerResourcesResponse) Descriptor

func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int)

func (*UpdateContainerResourcesResponse) Marshal

func (m *UpdateContainerResourcesResponse) Marshal() (dAtA []byte, err error)

func (*UpdateContainerResourcesResponse) MarshalTo

func (m *UpdateContainerResourcesResponse) MarshalTo(dAtA []byte) (int, error)

func (*UpdateContainerResourcesResponse) MarshalToSizedBuffer

func (m *UpdateContainerResourcesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateContainerResourcesResponse) ProtoMessage

func (*UpdateContainerResourcesResponse) ProtoMessage()

func (*UpdateContainerResourcesResponse) Reset

func (*UpdateContainerResourcesResponse) Size

func (m *UpdateContainerResourcesResponse) Size() (n int)

func (*UpdateContainerResourcesResponse) String

func (*UpdateContainerResourcesResponse) Unmarshal

func (m *UpdateContainerResourcesResponse) Unmarshal(dAtA []byte) error

func (*UpdateContainerResourcesResponse) XXX_DiscardUnknown

func (m *UpdateContainerResourcesResponse) XXX_DiscardUnknown()

func (*UpdateContainerResourcesResponse) XXX_Marshal

func (m *UpdateContainerResourcesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateContainerResourcesResponse) XXX_Merge

func (*UpdateContainerResourcesResponse) XXX_Size

func (m *UpdateContainerResourcesResponse) XXX_Size() int

func (*UpdateContainerResourcesResponse) XXX_Unmarshal

func (m *UpdateContainerResourcesResponse) XXX_Unmarshal(b []byte) error

type UpdateRuntimeConfigRequest

type UpdateRuntimeConfigRequest struct {
	RuntimeConfig        *RuntimeConfig `protobuf:"bytes,1,opt,name=runtime_config,json=runtimeConfig,proto3" json:"runtime_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UpdateRuntimeConfigRequest) Descriptor

func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int)

func (*UpdateRuntimeConfigRequest) GetRuntimeConfig

func (m *UpdateRuntimeConfigRequest) GetRuntimeConfig() *RuntimeConfig

func (*UpdateRuntimeConfigRequest) Marshal

func (m *UpdateRuntimeConfigRequest) Marshal() (dAtA []byte, err error)

func (*UpdateRuntimeConfigRequest) MarshalTo

func (m *UpdateRuntimeConfigRequest) MarshalTo(dAtA []byte) (int, error)

func (*UpdateRuntimeConfigRequest) MarshalToSizedBuffer

func (m *UpdateRuntimeConfigRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateRuntimeConfigRequest) ProtoMessage

func (*UpdateRuntimeConfigRequest) ProtoMessage()

func (*UpdateRuntimeConfigRequest) Reset

func (m *UpdateRuntimeConfigRequest) Reset()

func (*UpdateRuntimeConfigRequest) Size

func (m *UpdateRuntimeConfigRequest) Size() (n int)

func (*UpdateRuntimeConfigRequest) String

func (this *UpdateRuntimeConfigRequest) String() string

func (*UpdateRuntimeConfigRequest) Unmarshal

func (m *UpdateRuntimeConfigRequest) Unmarshal(dAtA []byte) error

func (*UpdateRuntimeConfigRequest) XXX_DiscardUnknown

func (m *UpdateRuntimeConfigRequest) XXX_DiscardUnknown()

func (*UpdateRuntimeConfigRequest) XXX_Marshal

func (m *UpdateRuntimeConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateRuntimeConfigRequest) XXX_Merge

func (m *UpdateRuntimeConfigRequest) XXX_Merge(src proto.Message)

func (*UpdateRuntimeConfigRequest) XXX_Size

func (m *UpdateRuntimeConfigRequest) XXX_Size() int

func (*UpdateRuntimeConfigRequest) XXX_Unmarshal

func (m *UpdateRuntimeConfigRequest) XXX_Unmarshal(b []byte) error

type UpdateRuntimeConfigResponse

type UpdateRuntimeConfigResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateRuntimeConfigResponse) Descriptor

func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int)

func (*UpdateRuntimeConfigResponse) Marshal

func (m *UpdateRuntimeConfigResponse) Marshal() (dAtA []byte, err error)

func (*UpdateRuntimeConfigResponse) MarshalTo

func (m *UpdateRuntimeConfigResponse) MarshalTo(dAtA []byte) (int, error)

func (*UpdateRuntimeConfigResponse) MarshalToSizedBuffer

func (m *UpdateRuntimeConfigResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateRuntimeConfigResponse) ProtoMessage

func (*UpdateRuntimeConfigResponse) ProtoMessage()

func (*UpdateRuntimeConfigResponse) Reset

func (m *UpdateRuntimeConfigResponse) Reset()

func (*UpdateRuntimeConfigResponse) Size

func (m *UpdateRuntimeConfigResponse) Size() (n int)

func (*UpdateRuntimeConfigResponse) String

func (this *UpdateRuntimeConfigResponse) String() string

func (*UpdateRuntimeConfigResponse) Unmarshal

func (m *UpdateRuntimeConfigResponse) Unmarshal(dAtA []byte) error

func (*UpdateRuntimeConfigResponse) XXX_DiscardUnknown

func (m *UpdateRuntimeConfigResponse) XXX_DiscardUnknown()

func (*UpdateRuntimeConfigResponse) XXX_Marshal

func (m *UpdateRuntimeConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateRuntimeConfigResponse) XXX_Merge

func (m *UpdateRuntimeConfigResponse) XXX_Merge(src proto.Message)

func (*UpdateRuntimeConfigResponse) XXX_Size

func (m *UpdateRuntimeConfigResponse) XXX_Size() int

func (*UpdateRuntimeConfigResponse) XXX_Unmarshal

func (m *UpdateRuntimeConfigResponse) XXX_Unmarshal(b []byte) error

type VersionRequest

type VersionRequest struct {
	// Version of the kubelet runtime API.
	Version              string   `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*VersionRequest) Descriptor

func (*VersionRequest) Descriptor() ([]byte, []int)

func (*VersionRequest) GetVersion

func (m *VersionRequest) GetVersion() string

func (*VersionRequest) Marshal

func (m *VersionRequest) Marshal() (dAtA []byte, err error)

func (*VersionRequest) MarshalTo

func (m *VersionRequest) MarshalTo(dAtA []byte) (int, error)

func (*VersionRequest) MarshalToSizedBuffer

func (m *VersionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VersionRequest) ProtoMessage

func (*VersionRequest) ProtoMessage()

func (*VersionRequest) Reset

func (m *VersionRequest) Reset()

func (*VersionRequest) Size

func (m *VersionRequest) Size() (n int)

func (*VersionRequest) String

func (this *VersionRequest) String() string

func (*VersionRequest) Unmarshal

func (m *VersionRequest) Unmarshal(dAtA []byte) error

func (*VersionRequest) XXX_DiscardUnknown

func (m *VersionRequest) XXX_DiscardUnknown()

func (*VersionRequest) XXX_Marshal

func (m *VersionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VersionRequest) XXX_Merge

func (m *VersionRequest) XXX_Merge(src proto.Message)

func (*VersionRequest) XXX_Size

func (m *VersionRequest) XXX_Size() int

func (*VersionRequest) XXX_Unmarshal

func (m *VersionRequest) XXX_Unmarshal(b []byte) error

type VersionResponse

type VersionResponse struct {
	// Version of the kubelet runtime API.
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// Name of the container runtime.
	RuntimeName string `protobuf:"bytes,2,opt,name=runtime_name,json=runtimeName,proto3" json:"runtime_name,omitempty"`
	// Version of the container runtime. The string must be
	// semver-compatible.
	RuntimeVersion string `protobuf:"bytes,3,opt,name=runtime_version,json=runtimeVersion,proto3" json:"runtime_version,omitempty"`
	// API version of the container runtime. The string must be
	// semver-compatible.
	RuntimeApiVersion    string   `protobuf:"bytes,4,opt,name=runtime_api_version,json=runtimeApiVersion,proto3" json:"runtime_api_version,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*VersionResponse) Descriptor

func (*VersionResponse) Descriptor() ([]byte, []int)

func (*VersionResponse) GetRuntimeApiVersion

func (m *VersionResponse) GetRuntimeApiVersion() string

func (*VersionResponse) GetRuntimeName

func (m *VersionResponse) GetRuntimeName() string

func (*VersionResponse) GetRuntimeVersion

func (m *VersionResponse) GetRuntimeVersion() string

func (*VersionResponse) GetVersion

func (m *VersionResponse) GetVersion() string

func (*VersionResponse) Marshal

func (m *VersionResponse) Marshal() (dAtA []byte, err error)

func (*VersionResponse) MarshalTo

func (m *VersionResponse) MarshalTo(dAtA []byte) (int, error)

func (*VersionResponse) MarshalToSizedBuffer

func (m *VersionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VersionResponse) ProtoMessage

func (*VersionResponse) ProtoMessage()

func (*VersionResponse) Reset

func (m *VersionResponse) Reset()

func (*VersionResponse) Size

func (m *VersionResponse) Size() (n int)

func (*VersionResponse) String

func (this *VersionResponse) String() string

func (*VersionResponse) Unmarshal

func (m *VersionResponse) Unmarshal(dAtA []byte) error

func (*VersionResponse) XXX_DiscardUnknown

func (m *VersionResponse) XXX_DiscardUnknown()

func (*VersionResponse) XXX_Marshal

func (m *VersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VersionResponse) XXX_Merge

func (m *VersionResponse) XXX_Merge(src proto.Message)

func (*VersionResponse) XXX_Size

func (m *VersionResponse) XXX_Size() int

func (*VersionResponse) XXX_Unmarshal

func (m *VersionResponse) XXX_Unmarshal(b []byte) error

type WindowsContainerConfig

type WindowsContainerConfig struct {
	// Resources specification for the container.
	Resources *WindowsContainerResources `protobuf:"bytes,1,opt,name=resources,proto3" json:"resources,omitempty"`
	// WindowsContainerSecurityContext configuration for the container.
	SecurityContext      *WindowsContainerSecurityContext `protobuf:"bytes,2,opt,name=security_context,json=securityContext,proto3" json:"security_context,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                         `json:"-"`
	XXX_sizecache        int32                            `json:"-"`
}

WindowsContainerConfig contains platform-specific configuration for Windows-based containers.

func (*WindowsContainerConfig) Descriptor

func (*WindowsContainerConfig) Descriptor() ([]byte, []int)

func (*WindowsContainerConfig) GetResources

func (*WindowsContainerConfig) GetSecurityContext

func (*WindowsContainerConfig) Marshal

func (m *WindowsContainerConfig) Marshal() (dAtA []byte, err error)

func (*WindowsContainerConfig) MarshalTo

func (m *WindowsContainerConfig) MarshalTo(dAtA []byte) (int, error)

func (*WindowsContainerConfig) MarshalToSizedBuffer

func (m *WindowsContainerConfig) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*WindowsContainerConfig) ProtoMessage

func (*WindowsContainerConfig) ProtoMessage()

func (*WindowsContainerConfig) Reset

func (m *WindowsContainerConfig) Reset()

func (*WindowsContainerConfig) Size

func (m *WindowsContainerConfig) Size() (n int)

func (*WindowsContainerConfig) String

func (this *WindowsContainerConfig) String() string

func (*WindowsContainerConfig) Unmarshal

func (m *WindowsContainerConfig) Unmarshal(dAtA []byte) error

func (*WindowsContainerConfig) XXX_DiscardUnknown

func (m *WindowsContainerConfig) XXX_DiscardUnknown()

func (*WindowsContainerConfig) XXX_Marshal

func (m *WindowsContainerConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WindowsContainerConfig) XXX_Merge

func (m *WindowsContainerConfig) XXX_Merge(src proto.Message)

func (*WindowsContainerConfig) XXX_Size

func (m *WindowsContainerConfig) XXX_Size() int

func (*WindowsContainerConfig) XXX_Unmarshal

func (m *WindowsContainerConfig) XXX_Unmarshal(b []byte) error

type WindowsContainerResources

type WindowsContainerResources struct {
	// CPU shares (relative weight vs. other containers). Default: 0 (not specified).
	CpuShares int64 `protobuf:"varint,1,opt,name=cpu_shares,json=cpuShares,proto3" json:"cpu_shares,omitempty"`
	// Number of CPUs available to the container. Default: 0 (not specified).
	CpuCount int64 `protobuf:"varint,2,opt,name=cpu_count,json=cpuCount,proto3" json:"cpu_count,omitempty"`
	// Specifies the portion of processor cycles that this container can use as a percentage times 100.
	CpuMaximum int64 `protobuf:"varint,3,opt,name=cpu_maximum,json=cpuMaximum,proto3" json:"cpu_maximum,omitempty"`
	// Memory limit in bytes. Default: 0 (not specified).
	MemoryLimitInBytes   int64    `protobuf:"varint,4,opt,name=memory_limit_in_bytes,json=memoryLimitInBytes,proto3" json:"memory_limit_in_bytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

WindowsContainerResources specifies Windows specific configuration for resources.

func (*WindowsContainerResources) Descriptor

func (*WindowsContainerResources) Descriptor() ([]byte, []int)

func (*WindowsContainerResources) GetCpuCount

func (m *WindowsContainerResources) GetCpuCount() int64

func (*WindowsContainerResources) GetCpuMaximum

func (m *WindowsContainerResources) GetCpuMaximum() int64

func (*WindowsContainerResources) GetCpuShares

func (m *WindowsContainerResources) GetCpuShares() int64

func (*WindowsContainerResources) GetMemoryLimitInBytes

func (m *WindowsContainerResources) GetMemoryLimitInBytes() int64

func (*WindowsContainerResources) Marshal

func (m *WindowsContainerResources) Marshal() (dAtA []byte, err error)

func (*WindowsContainerResources) MarshalTo

func (m *WindowsContainerResources) MarshalTo(dAtA []byte) (int, error)

func (*WindowsContainerResources) MarshalToSizedBuffer

func (m *WindowsContainerResources) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*WindowsContainerResources) ProtoMessage

func (*WindowsContainerResources) ProtoMessage()

func (*WindowsContainerResources) Reset

func (m *WindowsContainerResources) Reset()

func (*WindowsContainerResources) Size

func (m *WindowsContainerResources) Size() (n int)

func (*WindowsContainerResources) String

func (this *WindowsContainerResources) String() string

func (*WindowsContainerResources) Unmarshal

func (m *WindowsContainerResources) Unmarshal(dAtA []byte) error

func (*WindowsContainerResources) XXX_DiscardUnknown

func (m *WindowsContainerResources) XXX_DiscardUnknown()

func (*WindowsContainerResources) XXX_Marshal

func (m *WindowsContainerResources) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WindowsContainerResources) XXX_Merge

func (m *WindowsContainerResources) XXX_Merge(src proto.Message)

func (*WindowsContainerResources) XXX_Size

func (m *WindowsContainerResources) XXX_Size() int

func (*WindowsContainerResources) XXX_Unmarshal

func (m *WindowsContainerResources) XXX_Unmarshal(b []byte) error

type WindowsContainerSecurityContext

type WindowsContainerSecurityContext struct {
	// User name to run the container process as. If specified, the user MUST
	// exist in the container image and be resolved there by the runtime;
	// otherwise, the runtime MUST return error.
	RunAsUsername string `protobuf:"bytes,1,opt,name=run_as_username,json=runAsUsername,proto3" json:"run_as_username,omitempty"`
	// The contents of the GMSA credential spec to use to run this container.
	CredentialSpec       string   `protobuf:"bytes,2,opt,name=credential_spec,json=credentialSpec,proto3" json:"credential_spec,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

WindowsContainerSecurityContext holds windows security configuration that will be applied to a container.

func (*WindowsContainerSecurityContext) Descriptor

func (*WindowsContainerSecurityContext) Descriptor() ([]byte, []int)

func (*WindowsContainerSecurityContext) GetCredentialSpec

func (m *WindowsContainerSecurityContext) GetCredentialSpec() string

func (*WindowsContainerSecurityContext) GetRunAsUsername

func (m *WindowsContainerSecurityContext) GetRunAsUsername() string

func (*WindowsContainerSecurityContext) Marshal

func (m *WindowsContainerSecurityContext) Marshal() (dAtA []byte, err error)

func (*WindowsContainerSecurityContext) MarshalTo

func (m *WindowsContainerSecurityContext) MarshalTo(dAtA []byte) (int, error)

func (*WindowsContainerSecurityContext) MarshalToSizedBuffer

func (m *WindowsContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*WindowsContainerSecurityContext) ProtoMessage

func (*WindowsContainerSecurityContext) ProtoMessage()

func (*WindowsContainerSecurityContext) Reset

func (*WindowsContainerSecurityContext) Size

func (m *WindowsContainerSecurityContext) Size() (n int)

func (*WindowsContainerSecurityContext) String

func (this *WindowsContainerSecurityContext) String() string

func (*WindowsContainerSecurityContext) Unmarshal

func (m *WindowsContainerSecurityContext) Unmarshal(dAtA []byte) error

func (*WindowsContainerSecurityContext) XXX_DiscardUnknown

func (m *WindowsContainerSecurityContext) XXX_DiscardUnknown()

func (*WindowsContainerSecurityContext) XXX_Marshal

func (m *WindowsContainerSecurityContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WindowsContainerSecurityContext) XXX_Merge

func (m *WindowsContainerSecurityContext) XXX_Merge(src proto.Message)

func (*WindowsContainerSecurityContext) XXX_Size

func (m *WindowsContainerSecurityContext) XXX_Size() int

func (*WindowsContainerSecurityContext) XXX_Unmarshal

func (m *WindowsContainerSecurityContext) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL