From 156bc7a1773b9f4e06720eb0be56891a45ded918 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Tue, 10 Apr 2018 19:52:58 -0300 Subject: [PATCH] Update nginx image (#2328) * Update nginx image * Update minikube start script --- Makefile | 2 +- test/e2e/up.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ea54c0c1e..717a33fe8 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ IMAGE = $(REGISTRY)/$(IMGNAME) MULTI_ARCH_IMG = $(IMAGE)-$(ARCH) # Set default base image dynamically for each arch -BASEIMAGE?=quay.io/kubernetes-ingress-controller/nginx-$(ARCH):0.40 +BASEIMAGE?=quay.io/kubernetes-ingress-controller/nginx-$(ARCH):0.41 ifeq ($(ARCH),arm) QEMUARCH=arm diff --git a/test/e2e/up.sh b/test/e2e/up.sh index 6479cf73c..b4f5f9a39 100755 --- a/test/e2e/up.sh +++ b/test/e2e/up.sh @@ -21,7 +21,7 @@ curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/$KUBE chmod +x kubectl && sudo mv kubectl /usr/local/bin/ echo "downloading minikube..." -curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && \ +curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.25.2/minikube-linux-amd64 && \ chmod +x minikube && \ sudo mv minikube /usr/local/bin/