Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
fix(demo): fix optional args
Browse files Browse the repository at this point in the history
This change fixes the demo script to accept optional arguments passed
through to `osm install`.

Signed-off-by: Jon Huhn <johuhn@microsoft.com>
  • Loading branch information
nojnhuh committed Feb 19, 2021
1 parent bf02f45 commit 02cc4d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/run-osm-demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ if [ "$CERT_MANAGER" = "vault" ]; then
--enable-prometheus-scraping="$ENABLE_PROMETHEUS_SCRAPING" \
--envoy-log-level "$ENVOY_LOG_LEVEL" \
--timeout=90s \
--enable-routes-v2-experimental="$ROUTES_V2"
--enable-routes-v2-experimental="$ROUTES_V2" \
$optionalInstallArgs
else
# shellcheck disable=SC2086
Expand All @@ -127,7 +127,7 @@ else
--enable-prometheus-scraping="$ENABLE_PROMETHEUS_SCRAPING" \
--envoy-log-level "$ENVOY_LOG_LEVEL" \
--timeout=90s \
--enable-routes-v2-experimental="$ROUTES_V2"
--enable-routes-v2-experimental="$ROUTES_V2" \
$optionalInstallArgs
fi

Expand Down

0 comments on commit 02cc4d0

Please sign in to comment.