| 52 | ) |
| 53 | |
| 54 | type crioFactory struct { |
| 55 | machineInfoFactory info.MachineInfoFactory |
| 56 | |
| 57 | storageDriver storageDriver |
| 58 | storageDir string |
| 59 | |
| 60 | // Information about the mounted cgroup subsystems. |
| 61 | cgroupSubsystems map[string]string |
| 62 | |
| 63 | // Information about mounted filesystems. |
| 64 | fsInfo fs.FsInfo |
| 65 | |
| 66 | includedMetrics container.MetricSet |
| 67 | |
| 68 | client CrioClient |
| 69 | |
| 70 | cgroupDriver string |
| 71 | } |
| 72 | |
| 73 | func (f *crioFactory) String() string { |
| 74 | return CrioNamespace |
nothing calls this directly
no outgoing calls
no test coverage detected