Skip to content

Commit 5e615ef

Browse files
committed
Fix missing variable in run-chart-test script
1 parent 6c73d66 commit 5e615ef

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

test/e2e/run-chart-test.sh

+11-4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17+
KIND_LOG_LEVEL="1"
18+
19+
if ! [ -z $DEBUG ]; then
20+
set -x
21+
KIND_LOG_LEVEL="6"
22+
fi
23+
1724
set -o errexit
1825
set -o nounset
1926
set -o pipefail
@@ -41,10 +48,10 @@ export KIND_CLUSTER_NAME=${KIND_CLUSTER_NAME:-ingress-nginx-dev}
4148
export KUBECONFIG="${KUBECONFIG:-$HOME/.kube/kind-config-$KIND_CLUSTER_NAME}"
4249

4350
# Disable execution if running as a Prow job
44-
#if [[ ! -z ${PROW_JOB_ID:-} ]]; then
45-
# echo "skipping execution..."
46-
# exit 0
47-
#fi
51+
if [[ ! -z ${PROW_JOB_ID:-} ]]; then
52+
echo "skipping execution..."
53+
exit 0
54+
fi
4855

4956
if [ "${SKIP_CLUSTER_CREATION:-false}" = "false" ]; then
5057
echo "[dev-env] creating Kubernetes cluster with kind"

test/e2e/wait-for-nginx.sh

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ controller:
6060
image:
6161
repository: ingress-controller/controller
6262
tag: 1.0.0-dev
63+
digest:
6364
scope:
6465
enabled: true
6566
config:

0 commit comments

Comments
 (0)