Skip to content

Commit

Permalink
Update nginx image
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf committed Mar 1, 2019
1 parent e48e9c1 commit fbed06f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,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.80
BASEIMAGE?=quay.io/kubernetes-ingress-controller/nginx-$(ARCH):0.81

ifeq ($(ARCH),arm64)
QEMUARCH=aarch64
Expand Down
2 changes: 1 addition & 1 deletion build/go-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [ "$missing" = true ];then
exit 1
fi

E2E_IMAGE=quay.io/kubernetes-ingress-controller/e2e:v02262019-ec3a2d6bc
E2E_IMAGE=quay.io/kubernetes-ingress-controller/e2e:v03012019-1ad00f305

DOCKER_OPTS=${DOCKER_OPTS:-""}

Expand Down
13 changes: 7 additions & 6 deletions images/e2e/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM quay.io/kubernetes-ingress-controller/nginx-amd64:0.80
FROM quay.io/kubernetes-ingress-controller/nginx-amd64:0.81

RUN clean-install \
g++ \
Expand All @@ -25,9 +25,9 @@ RUN clean-install \
python \
pkg-config

ENV GOLANG_VERSION 1.11.5
ENV GOLANG_VERSION 1.12
ENV GO_ARCH linux-amd64
ENV GOLANG_SHA ff54aafedff961eb94792487e827515da683d61a5f9482f668008832631e5d25
ENV GOLANG_SHA 750a07fef8579ae4839458701f4df690e0b20b8bcce33b437e4df89c451b6f13

RUN set -eux; \
url="https://golang.org/dl/go${GOLANG_VERSION}.${GO_ARCH}.tar.gz"; \
Expand All @@ -45,8 +45,9 @@ RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

WORKDIR $GOPATH

ENV RESTY_CLI_VERSION 0.22rc2
ENV RESTY_CLI_SHA 1ec64d204469a04da553c95eaafb2e5601a03acb8f26cc10ae16b15525228c12
ENV RESTY_CLI_VERSION 0.23
ENV RESTY_CLI_SHA 8715b9a6e33140fd468779cd561c0c622f7444a902dc578b1137941ff3fc1ed8

RUN set -eux; \
url="https://github.com/openresty/resty-cli/archive/v${RESTY_CLI_VERSION}.tar.gz"; \
wget -O resty_cli.tgz "$url"; \
Expand All @@ -57,7 +58,7 @@ RUN set -eux; \
resty -V

RUN luarocks install luacheck \
&& luarocks install busted 2.0.rc12
&& luarocks install busted

RUN go get github.com/onsi/ginkgo/ginkgo \
&& go get golang.org/x/lint/golint
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/kubernetes-ingress-controller/e2e:v02262019-ec3a2d6bc AS BASE
FROM quay.io/kubernetes-ingress-controller/e2e:v03012019-1ad00f305 AS BASE

FROM quay.io/kubernetes-ingress-controller/debian-base-amd64:0.1

Expand Down

0 comments on commit fbed06f

Please sign in to comment.