diff --git a/debug-scripts/local-scripts/ovn-db-run-locally b/debug-scripts/local-scripts/ovn-db-run-locally index d0d163b..261a032 100755 --- a/debug-scripts/local-scripts/ovn-db-run-locally +++ b/debug-scripts/local-scripts/ovn-db-run-locally @@ -1,6 +1,6 @@ #!/bin/bash set -euo pipefail -source ./utils +source ../utils description() { echo "Run ovn-kubernetes container with ovn db restored from a given file" @@ -56,7 +56,7 @@ main() { exit 1 fi - CONTAINER=$($CONTAINER_ENGINE run -t -d --entrypoint /bin/bash quay.io/openshift/origin-ovn-kubernetes:latest) + CONTAINER=$($CONTAINER_ENGINE run --arch=amd64 -t -d --entrypoint /bin/bash quay.io/openshift/origin-ovn-kubernetes:latest) # cleanup if container is successfully created trap clean_up EXIT diff --git a/debug-scripts/local-scripts/ovn-dbs-run-locally b/debug-scripts/local-scripts/ovn-dbs-run-locally index a1ebeba..6366133 100755 --- a/debug-scripts/local-scripts/ovn-dbs-run-locally +++ b/debug-scripts/local-scripts/ovn-dbs-run-locally @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -source ./utils +source ../utils description() { echo "Run multiple ovn-kubernetes containers with ovn dbs restored from files in a given directory"