include the container name in the file copy path destination if provided

This commit is contained in:
Andrew Lavery
2020-04-06 18:02:37 -04:00
parent 38aef191ab
commit 2c495b8a7a

View File

@@ -34,7 +34,7 @@ func Copy(ctx *Context, copyCollector *troubleshootv1beta1.Copy) ([]byte, error)
if len(pods) > 0 {
for _, pod := range pods {
bundlePath := filepath.Join(copyCollector.Name, pod.Namespace, pod.Name)
bundlePath := filepath.Join(copyCollector.Name, pod.Namespace, pod.Name, copyCollector.ContainerName)
files, copyErrors := copyFiles(ctx, client, pod, copyCollector)
if len(copyErrors) > 0 {