(namespace string, pod string, container string)
| 213 | } |
| 214 | |
| 215 | func key(namespace string, pod string, container string) string { |
| 216 | return namespace + "/" + pod + "/" + container |
| 217 | } |
| 218 | |
| 219 | func byPodName(ctx context.Context, client kubectl.Client, namespace string, name string, containerName string, skipContainer FilterContainer, skipInit bool) ([]*SelectedPodContainer, error) { |
| 220 | if name == "" { |
no outgoing calls
no test coverage detected