Fix missing variable in run-chart-test script
This commit is contained in:
parent
6c73d66ae6
commit
5e615efa91
2 changed files with 12 additions and 4 deletions
|
@ -14,6 +14,13 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
KIND_LOG_LEVEL="1"
|
||||
|
||||
if ! [ -z $DEBUG ]; then
|
||||
set -x
|
||||
KIND_LOG_LEVEL="6"
|
||||
fi
|
||||
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
set -o pipefail
|
||||
|
@ -41,10 +48,10 @@ export KIND_CLUSTER_NAME=${KIND_CLUSTER_NAME:-ingress-nginx-dev}
|
|||
export KUBECONFIG="${KUBECONFIG:-$HOME/.kube/kind-config-$KIND_CLUSTER_NAME}"
|
||||
|
||||
# Disable execution if running as a Prow job
|
||||
#if [[ ! -z ${PROW_JOB_ID:-} ]]; then
|
||||
# echo "skipping execution..."
|
||||
# exit 0
|
||||
#fi
|
||||
if [[ ! -z ${PROW_JOB_ID:-} ]]; then
|
||||
echo "skipping execution..."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "${SKIP_CLUSTER_CREATION:-false}" = "false" ]; then
|
||||
echo "[dev-env] creating Kubernetes cluster with kind"
|
||||
|
|
|
@ -60,6 +60,7 @@ controller:
|
|||
image:
|
||||
repository: ingress-controller/controller
|
||||
tag: 1.0.0-dev
|
||||
digest:
|
||||
scope:
|
||||
enabled: true
|
||||
config:
|
||||
|
|
Loading…
Reference in a new issue