(filter *runtimeapi.PodSandboxFilter, _ ...grpc.CallOption)
| 149 | } |
| 150 | |
| 151 | func (r *RuntimeService) ListPodSandbox(filter *runtimeapi.PodSandboxFilter, _ ...grpc.CallOption) ([]*runtimeapi.PodSandbox, error) { |
| 152 | return r.runtimeService.ListPodSandbox(context.Background(), filter) |
| 153 | } |
| 154 | |
| 155 | func (r *RuntimeService) CreateContainer(podSandboxID string, config *runtimeapi.ContainerConfig, sandboxConfig *runtimeapi.PodSandboxConfig, _ ...grpc.CallOption) (string, error) { |
| 156 | return r.runtimeService.CreateContainer(context.Background(), podSandboxID, config, sandboxConfig) |
no outgoing calls