Support for multiple docker registries
You can now specify multiple docker registries in the config file.
The `docker` field in the `mpyl_config.yml` now takes a list of registries:
yaml
docker:
defaultRegistry: 'acme.docker.com'
registries:
- hostName: 'acme.docker.com'
userName: !ENV ${DOCKER_REGISTRY_USR:docker_user}
password: !ENV ${DOCKER_REGISTRY_PSW:docker_password}
which can be referenced in the `project.yaml` by the `hostName` field
yaml
docker:
hostName: 'acme.docker.com'
Automatic config updates
Running `mpyl health` will now automatically update your config file with the latest version of the config file from the repo.
This will allow you to get the latest changes to the config file without having to manually update it.
What's Changed
* feature/TECH 565 Remove implicit deploy logic by koeves in https://github.com/Vandebron/mpyl/pull/226
* [TECH-521] Rename cvs to vcs by SamTheisens in https://github.com/Vandebron/mpyl/pull/253
* [TECH-491] Upgrade run properties by SamTheisens in https://github.com/Vandebron/mpyl/pull/257
* [TECH-117] Support multiple Docker registries by peterrutg in https://github.com/Vandebron/mpyl/pull/212
* [TECH-488] Remove filtering from project commands by SamTheisens in https://github.com/Vandebron/mpyl/pull/256
**Full Changelog**: https://github.com/Vandebron/mpyl/compare/1.2.1...1.3.0