| 38 | type RuntimeMetadata interface{} |
| 39 | |
| 40 | type Metadata struct { |
| 41 | ServiceName string |
| 42 | |
| 43 | RuntimeMetadata RuntimeMetadata |
| 44 | |
| 45 | HostPort int |
| 46 | IP string |
| 47 | GuestPort int |
| 48 | NetNs string |
| 49 | |
| 50 | ExitStatusChannel chan uint32 |
| 51 | } |
| 52 | |
| 53 | func NewSandboxManager(nodeName string) *SandboxManager { |
| 54 | return &SandboxManager{ |
nothing calls this directly
no outgoing calls
no test coverage detected