This repository was archived by the owner on Mar 16, 2024. It is now read-only.

Description
We block most acorn update commands on nested Acorns because the user should instead be updating the parent Acorn, since that is the source of truth. However, it is reasonable for a user to use notifyUpgrade on a nested Acorn, in an Acornfile such as this one:
acorns: "myAcorn": {
image: "myimage:latest"
autoUpgrade: true
notifyUpgrade: true
}
And in that circumstance, the user should be able to do acorn update --confirm-upgrade <app name>.myAcorn in order to confirm the upgrade when a new image is available.
Right now, a command like that will fail name validation because a . is present in the name. We need to find a way around this and allow that behavior.