diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 9290e772..86837ce2 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -10,6 +10,7 @@ * Dropped `-chart` suffix from installed Helm chart names * Added ability to build aarch64 images on an aarch64 host machine * Added caching for container images +* Added built image name output to build command ## API diff --git a/pkg/build/build.go b/pkg/build/build.go index d29f2a0b..7e48a729 100644 --- a/pkg/build/build.go +++ b/pkg/build/build.go @@ -51,7 +51,8 @@ func (b *Builder) Build() error { image.TypeISO, image.TypeRAW) } - log.Audit("Image build complete!") + log.Auditf("Build complete, the image can be found at: %s", + b.context.ImageDefinition.Image.OutputImageName) return nil }