Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions internal/helpers/tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

const (
defaultMainImageTag = "4.8.4"
defaultMainImageTag = "4.9.2"
)

func LookupMainImageTag(log *logger.Logger) (string, error) {
Expand All @@ -28,7 +28,10 @@ func LookupMainImageTag(log *logger.Logger) (string, error) {
return tag, nil
}

log.Dimf("Using default main image tag %s -- set MAIN_IMAGE_TAG to the desired tag", defaultMainImageTag)
log.Warningf("No MAIN_IMAGE_TAG found in the environment, using default main image tag %s for deployment", defaultMainImageTag)
log.Warning("To use a different tag, set the MAIN_IMAGE_TAG environment variable")
log.Warning("Alternatively, execute roxie from within the stackrox repository, in which case the currently checked out stackrox tag will be used")

return defaultMainImageTag, nil
}

Expand Down