Я работаю над новым CRI для Kubernetes и хотел бы получить информацию о конфигурации модуля в методе PullImage, но PullImageRequest
всегда содержит конфигурацию песочницы со значением nil.
Как вывидно, PullImageRequest содержит объект PodSanboxConfig:
type PullImageRequest struct {
// Spec of the image.
Image *ImageSpec `protobuf:"bytes,1,opt,name=image" json:"image,omitempty"`
// Authentication configuration for pulling the image.
Auth *AuthConfig `protobuf:"bytes,2,opt,name=auth" 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" json:"sandbox_config,omitempty"`
}
Я работаю с
Kubernetes 1.11.3
и
cri / runtime / v1alpha2
Как мне получить объект PodSandboxConfig?
Спасибо