feat: upgrade an app with no user input with --minor/major/patch flag #104

Merged
decentral1se merged 4 commits from knoflook/abra:recipe-upgrade into main 2021-10-05 09:55:25 +00:00
3 changed files with 54 additions and 20 deletions
Showing only changes of commit 5af4bb4f10 - Show all commits

View File

@ -130,6 +130,10 @@ is up to the end-user to decide.
break
}
}
if upgradeTag == "" {
logrus.Warnf("not upgrading from '%s' to '%s' for '%s', because the upgrade type is more serious than what user wants.", tag.String(), compatible[0].String(), image)
continue
}
} else {
msg := fmt.Sprintf("upgrade to which tag? (service: %s, tag: %s)", service.Name, tag)
if !tagcmp.IsParsable(img.(reference.NamedTagged).Tag()) {
@ -154,7 +158,7 @@ is up to the end-user to decide.
if err := recipe.UpdateTag(image, upgradeTag); err != nil {
logrus.Fatal(err)
}
logrus.Infof("tag updated from '%s' to '%s' for '%s'", tag.String(), upgradeTag, recipe.Name)
logrus.Infof("tag upgraded from '%s' to '%s' for '%s'", tag.String(), upgradeTag, image)
}
return nil