Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ $ alias openstack="oc exec -t openstackclient -- openstack"
$ openstack loadbalancer create --vip-subnet-id public-subnet --name lb-post-adoption --wait
----

. Trigger a failover for all existing load balancers to upgrade the amphorae virtual machines to use the new image and to establish connectivity with the new control plane:
. Trigger a failover for all existing amphora load balancers to upgrade the amphorae virtual machines to use the new image and to establish connectivity with the new control plane:
+
----
$ openstack loadbalancer list -f value -c id | \
$ openstack loadbalancer list -f value -c id --provider amphora | \
xargs -r -n1 -P4 ${BASH_ALIASES[openstack]} loadbalancer failover --wait
----
+
[NOTE]
Failover does not apply to OVN load balancers. As native components of the OVN infrastructure, they do not require actions during upgrades and updates.

. Delete old flavors that were migrated to the new control plane:
+
Expand Down
2 changes: 1 addition & 1 deletion tests/roles/dataplane_adoption/tasks/octavia_post.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
ansible.builtin.shell: |
{{ shell_header }}
{{ octavia_header }}
${BASH_ALIASES[openstack]} loadbalancer list -f value -c id --not-tag new | \
${BASH_ALIASES[openstack]} loadbalancer list -f value -c id --not-tag new --provider amphora | \
xargs -r -n1 -P4 ${BASH_ALIASES[openstack]} loadbalancer failover --wait

- name: check for existing load balancer
Expand Down
Loading