Acked-by: Mark Michelson <[email protected]>

This is a new feature, but it's good for debugging, so should this be backported to previous releases?

On 1/5/22 05:40, Dumitru Ceara wrote:
In conjunction with --nbdb-source and --sbdb-source this makes sandbox
troubleshooting of pre-existing deployments easier.

Signed-off-by: Dumitru Ceara <[email protected]>
---
  tutorial/ovs-sandbox | 10 +++++++++-
  1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
index d679cd39b..210a063b7 100755
--- a/tutorial/ovs-sandbox
+++ b/tutorial/ovs-sandbox
@@ -90,6 +90,7 @@ ic_nb_servers=3
  ic_sb_model=clustered
  ic_sb_servers=3
  dummy=override
+system_id=chassis-1
for option; do
      # This option-parsing mechanism borrowed from a Autoconf-generated
@@ -160,6 +161,7 @@ OVN options:
    --ic-nb-servers=N     number of servers in IC NB cluster (default: 3)
    --ic-sb-model=standalone|backup|clustered   ic-southbound database model
    --ic-sb-servers=N     number of servers in IC SB cluster (default: 3)
+  --system-id=ID        local system id (default: chassis-1)
Other options:
    -h, --help           Print this usage message.
@@ -335,6 +337,12 @@ EOF
          --ic-sb-m*)
              prev=ic_sb_model
              ;;
+        --system-i*=*)
+            system_id=$optarg
+            ;;
+        --system-i*)
+            prev=system_id
+            ;;
          -R|--gdb-run)
              gdb_vswitchd_ex=true
              gdb_ovsdb_ex=true
@@ -618,7 +626,7 @@ run ovn-ic-nbctl init
  run ovn-ic-sbctl init
  run ovn-nbctl set NB_Global . name=az-1
-run ovs-vsctl set open . external-ids:system-id=chassis-1
+run ovs-vsctl set open . external-ids:system-id=${system_id}
  run ovs-vsctl set open . external-ids:hostname=sandbox
  run ovs-vsctl set open . external-ids:ovn-encap-type=geneve
  run ovs-vsctl set open . external-ids:ovn-encap-ip=127.0.0.1


_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to