File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
tools/ovn_migration/tripleo_environment
playbooks/roles/recovery-backup/tasks Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,12 @@ Perform the following steps in the undercloud
155155 server that will be used as a NFS server to store the backup.
156156 Default: 192.168.24.1
157157
158+ * BACKUP_MIGRATION_CTL_PLANE_CIDRS - Only used if CREATE_BACKUP is enabled.
159+ A comma separated string of control plane subnets in CIDR notation for the
160+ controllers being backed up. The specified subnets will be used to enable
161+ NFS remote clients connections.
162+ Default: 192.168.24.0/24
163+
158164 .. warning ::
159165
160166 Please note that VALIDATE_MIGRATION requires enough quota (2
Original file line number Diff line number Diff line change 4242: ${VALIDATE_MIGRATION:= False}
4343: ${DHCP_RENEWAL_TIME:= 30}
4444: ${CREATE_BACKUP:= True}
45- : ${BACKUP_MIGRATION_IP:= 192.168.24.1} # TODO: Document this new var
45+ : ${BACKUP_MIGRATION_IP:= 192.168.24.1}
46+ : ${BACKUP_MIGRATION_CTL_PLANE_CIDRS:= 192.168.24.0/ 24}
4647
4748
4849check_for_necessary_files () {
@@ -328,6 +329,7 @@ start_migration() {
328329 -e overcloudrc=$OVERCLOUDRC_FILE \
329330 -e stackrc=$STACKRC_FILE \
330331 -e backup_migration_ip=$BACKUP_MIGRATION_IP \
332+ -e backup_migration_ctl_plane_cidrs=$BACKUP_MIGRATION_CTL_PLANE_CIDRS \
331333 -e create_backup=$CREATE_BACKUP \
332334 -e ansible_inventory=$inventory_file \
333335 -e validate_migration=$VALIDATE_MIGRATION $*
Original file line number Diff line number Diff line change 3636 --setup-nfs \
3737 --extra-vars '{
3838 "tripleo_backup_and_restore_server": {{ backup_migration_ip }},
39+ "tripleo_backup_and_restore_clients_nets": {{ backup_migration_ctl_plane_cidrs.split(',') }},
3940 "nfs_server_group_name": {{ revert_preparation_server_name }}
4041 }'
4142
You can’t perform that action at this time.
0 commit comments