Currently buildandpush CI plugins support baseImageConnectorRefs with 2 options, fixed value and input. The input option allows for .selectOneFrom list, but it doesnt support .default
The problem we face is we are migrating our base images from on-prem to cloud and need to add this variable to input set to choose the correct connector. We have hundreds of pipelines and cannot retrofit all pipelines with updated input sets.
If this can accept .default then no updates on inputsets is required up to the team wanting to move to the new base repo can add the config to the input set
Ask
In the CI pipline accept the following
baseImageConnectorRefs: <+input>.default(oldrepo)
Currently Working
baseImageConnectorRefs: <+input>.selectOneFrom(oldrepo,newrepo)