(apiVersion string, _ ...grpc.CallOption)
| 116 | } |
| 117 | |
| 118 | func (r *RuntimeService) Version(apiVersion string, _ ...grpc.CallOption) (*runtimeapi.VersionResponse, error) { |
| 119 | return r.runtimeService.Version(context.Background(), apiVersion) |
| 120 | } |
| 121 | |
| 122 | func (r *RuntimeService) RunPodSandbox(config *runtimeapi.PodSandboxConfig, runtimeHandler string, _ ...grpc.CallOption) (string, error) { |
| 123 | return r.runtimeService.RunPodSandbox(context.Background(), config, runtimeHandler) |