Skip to content

Commit b22e1ff

Browse files
Merge pull request #16859 from miminar/log-registry-pod-to-artifacts
Automatic merge from submit-queue. extended: log registry pod to artifacts directory To preserve it for post-CI-job-debugging. Follow-up for #15807 Addresses comment #15807 (comment)
2 parents ac23330 + 2428318 commit b22e1ff

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/extended/registry/util/util.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,16 @@ func GetRegistryPod(podsGetter kcoreclient.PodsGetter) (*kapiv1.Pod, error) {
120120
return &podList.Items[0], nil
121121
}
122122

123-
// LogRegistryPod attempts to write registry log to a file to recent test's output directory.
123+
// LogRegistryPod attempts to write registry log to a file in artifacts directory.
124124
func LogRegistryPod(oc *exutil.CLI) error {
125125
pod, err := GetRegistryPod(oc.KubeClient().Core())
126126
if err != nil {
127127
return fmt.Errorf("failed to get registry pod: %v", err)
128128
}
129-
path, err := oc.Run("logs").Args("dc/docker-registry").OutputToFile("pod-" + pod.Name + ".log")
129+
130+
ocLocal := *oc
131+
ocLocal.SetOutputDir(exutil.ArtifactDirPath())
132+
path, err := ocLocal.Run("logs").Args("dc/docker-registry").OutputToFile("pod-" + pod.Name + ".log")
130133
if err == nil {
131134
fmt.Fprintf(g.GinkgoWriter, "written registry pod log to %s\n", path)
132135
}

0 commit comments

Comments
 (0)