Skip to content

Commit

Permalink
fix /test/e2e/v1beta1/scripts/run-e2e-experiment.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tenzen-y committed May 1, 2022
1 parent d9885ff commit 21e5b20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/e2e/v1beta1/scripts/run-e2e-experiment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ set -o errexit
set -o nounset
set -o pipefail

CLUSTER_NAME="${CLUSTER_NAME}"
AWS_REGION="${AWS_REGION}"
EKS_CLUSTER_NAME="${CLUSTER_NAME}"
EKS_AWS_REGION="${AWS_REGION}"
EXPERIMENT_FILE=$1

echo "Configuring kubeconfig.."
aws eks update-kubeconfig --region=${AWS_REGION} --name=${CLUSTER_NAME}
aws eks update-kubeconfig --region="${EKS_AWS_REGION}" --name="${EKS_CLUSTER_NAME}"

echo "Katib deployments"
kubectl -n kubeflow get deploy
Expand All @@ -40,6 +40,6 @@ echo "Available CRDs"
kubectl get crd

echo "Running Experiment from ${EXPERIMENT_FILE} file"
./run-e2e-experiment ${EXPERIMENT_FILE}
./run-e2e-experiment "${EXPERIMENT_FILE}"

exit 0

0 comments on commit 21e5b20

Please sign in to comment.