v0.3.4.5
·
59 commits
to master
since this release
What's Changed
Support for migrating specific user groups
We now support migrating specific user groups by name or id by providing either --names
or --ids
as comma-separated values. More details about this are available here - https://harness.github.io/migrator/upgrade/user-groups
Introducing settings
We can now control specific behaviour of migration by providing settings using the overrides files. To provide settings add a settings section in the YAML & add the value of the setting as so -
overrides:
...
settings:
- type: SETTING_1
value: VALUE
- type: SETTING_2
value: VALUE
Once you have configured the desired settings, executing the migration command with the --override flag and appropriate YAML files will seamlessly incorporate your preferences:
harness-upgrade --load load.yaml --override overrides.yaml app --all
Read more about it https://harness.github.io/migrator/advanced/overrides-and-settings/