Merge "ovn-migration: Add doctext explaining VXLAN to Geneve migration"
This commit is contained in:
commit
821826e289
@ -4,6 +4,17 @@
|
|||||||
when: ovn_central is defined
|
when: ovn_central is defined
|
||||||
register: mysql_url
|
register: mysql_url
|
||||||
|
|
||||||
|
# The shell below is not readable well. The code spawns a sqlalchemy engine
|
||||||
|
# and connects to the Neutron database to run following SQL command:
|
||||||
|
# UPDATE networksegments SET networksegments.network_type='geneve' WHERE networksegments.network_type='vxlan';
|
||||||
|
# The indented Python code looks as follows:
|
||||||
|
#
|
||||||
|
# from sqlalchemy import create_engine
|
||||||
|
#
|
||||||
|
# engine = create_engine("{{ mysql_url.stdout }}")
|
||||||
|
# with engine.connect() as conn:
|
||||||
|
# conn.execute("SQL COMMAND")
|
||||||
|
#
|
||||||
- name: Change vxlan networks to Geneve
|
- name: Change vxlan networks to Geneve
|
||||||
shell: podman exec -it neutron_api python3 -c $'from sqlalchemy import create_engine\nengine = create_engine("{{ mysql_url.stdout }}")\nwith engine.connect() as conn:\n\tconn.execute("update networksegments set networksegments.network_type=\'geneve\' where networksegments.network_type=\'vxlan\';")'
|
shell: podman exec -it neutron_api python3 -c $'from sqlalchemy import create_engine\nengine = create_engine("{{ mysql_url.stdout }}")\nwith engine.connect() as conn:\n\tconn.execute("update networksegments set networksegments.network_type=\'geneve\' where networksegments.network_type=\'vxlan\';")'
|
||||||
when: ovn_central is defined
|
when: ovn_central is defined
|
||||||
|
Loading…
Reference in New Issue
Block a user