getContainerRootDir returns the root directory for managing container files, e.g. state checkpoint.
(id string)
| 141 | // getContainerRootDir returns the root directory for managing container files, |
| 142 | // e.g. state checkpoint. |
| 143 | func (c *criService) getContainerRootDir(id string) string { |
| 144 | return filepath.Join(c.config.RootDir, containersDir, id) |
| 145 | } |
| 146 | |
| 147 | // getImageVolumeHostPath returns the image volume directory for share. |
| 148 | func (c *criService) getImageVolumeHostPath(podID, imageID string) string { |
no outgoing calls
no test coverage detected