Commit 5e615ef 1 parent 6c73d66 commit 5e615ef Copy full SHA for 5e615ef
File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
+ KIND_LOG_LEVEL=" 1"
18
+
19
+ if ! [ -z $DEBUG ]; then
20
+ set -x
21
+ KIND_LOG_LEVEL=" 6"
22
+ fi
23
+
17
24
set -o errexit
18
25
set -o nounset
19
26
set -o pipefail
@@ -41,10 +48,10 @@ export KIND_CLUSTER_NAME=${KIND_CLUSTER_NAME:-ingress-nginx-dev}
41
48
export KUBECONFIG=" ${KUBECONFIG:- $HOME / .kube/ kind-config-$KIND_CLUSTER_NAME } "
42
49
43
50
# 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
48
55
49
56
if [ " ${SKIP_CLUSTER_CREATION:- false} " = " false" ]; then
50
57
echo " [dev-env] creating Kubernetes cluster with kind"
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ controller:
60
60
image:
61
61
repository: ingress-controller/controller
62
62
tag: 1.0.0-dev
63
+ digest:
63
64
scope:
64
65
enabled: true
65
66
config:
You can’t perform that action at this time.
0 commit comments