Skip to content

Commit

Permalink
Fixed missing quotes in echo statement (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
svalleru authored and k8s-ci-robot committed Jan 30, 2019
1 parent 8e3b8f7 commit 1325af3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deployment/redeploy_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ function applyIapIngress() {
}

# Configure parameters for latest and stable environments
if [ "$1" = "latest" ]
if [[ "$1" == "latest" ]]
then
NAMESPACE=kubeflow-latest
APP_NAME=kubeflow-latest_ks_app
FQDN=dev-latest.kubeflow.org
IP_NAME="kubeflow-latest-ip"
elif [ "$1" = "stable" ]
elif [[ "$1" == "stable" ]]
then
NAMESPACE=kubeflow
APP_NAME=ks-app
Expand Down Expand Up @@ -100,7 +100,7 @@ if [[ "${MASTER}" != "${KS_MASTER}" ]]; then
echo "Please configure the context to match ks environment ${KS_ENV}"
exit -1
else
echo kubectl context matches ks environment ${KS_ENV}
echo "kubectl context matches ks environment ${KS_ENV}"
fi

# Delete some confimaps so that will get recreated with the new config.
Expand Down

0 comments on commit 1325af3

Please sign in to comment.