Merge pull request #48277 from abgworrall/master

Automatic merge from submit-queue (batch tested with PRs 47619, 47951, 46260, 48277)

Write images.json file into artifacts dir

/assign @fejta 
/release-note-none

Hi Erick - I picked the wring outputdir first time round ...
This commit is contained in:
Kubernetes Submit Queue 2017-06-29 14:05:31 -07:00 committed by GitHub
commit 472e4ed9f1

View File

@ -188,7 +188,7 @@ func LogClusterImageSources() {
}
outputBytes, _ := json.MarshalIndent(images, "", " ")
filePath := filepath.Join(TestContext.OutputDir, "images.json")
filePath := filepath.Join(TestContext.ReportDir, "images.json")
if err := ioutil.WriteFile(filePath, outputBytes, 0644); err != nil {
Logf("cluster images sources, could not write to %q: %v", filePath, err)
}