This file implements methods in ImageManagerService.
()
| 37 | // This file implements methods in ImageManagerService. |
| 38 | |
| 39 | func (ds *dockerService) sandboxImage() string { |
| 40 | image := defaultSandboxImage |
| 41 | podSandboxImage := ds.podSandboxImage |
| 42 | if len(podSandboxImage) != 0 { |
| 43 | image = podSandboxImage |
| 44 | } |
| 45 | return image |
| 46 | } |
| 47 | |
| 48 | func isPinned(image string, tags []string) bool { |
| 49 | pinned := false |
no test coverage detected