Update nginx image and Go to 1.13.4 (#4785)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-11-29 15:20:18 -03:00 committed by GitHub
parent 60fc37d0e2
commit 46953ccb4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 11 deletions

View file

@ -1,4 +1,4 @@
FROM quay.io/kubernetes-ingress-controller/e2e:v09052019-38b985663 AS BASE
FROM quay.io/kubernetes-ingress-controller/e2e:v11272019-7e993dda1 AS BASE
FROM quay.io/kubernetes-ingress-controller/debian-base-amd64:0.1

View file

@ -48,15 +48,14 @@ KIND_CLUSTER_NAME="ingress-nginx-dev"
kind --version || $(echo "Please install kind before running e2e tests";exit 1)
echo "[dev-env] creating Kubernetes cluster with kind"
# TODO: replace the custom images after https://github.com/kubernetes-sigs/kind/issues/531
export KUBECONFIG="${HOME}/.kube/kind-config-${KIND_CLUSTER_NAME}"
kind create cluster \
--loglevel=${KIND_LOG_LEVEL} \
--name ${KIND_CLUSTER_NAME} \
--config ${DIR}/kind.yaml \
--image "kindest/node:${K8S_VERSION}"
export KUBECONFIG="$(kind get kubeconfig-path --name="${KIND_CLUSTER_NAME}")"
echo "Kubernetes cluster:"
kubectl get nodes -o wide