in src/com/epam/edp/platform/Openshift.groovy [27:37]
def getImageStreamTagsWithTime(imageStreamName, crApiGroup) {
def tags = getTags(imageStreamName, crApiGroup)
if (tags == null || tags.size() == 0) {
return null
}
return tags.collectEntries {
def s = it.split(" | ")
"latest" != s[0] ? [(s[0]): s[2]] : [:]
}
}