forked from rancher/ingress-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdea033
commit a6a82dd
Showing
11 changed files
with
406 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
FROM ubuntu:16.04 | ||
# FROM arm=armhf/ubuntu:16.04 | ||
|
||
ARG DAPPER_HOST_ARCH | ||
ENV HOST_ARCH=${DAPPER_HOST_ARCH} ARCH=${DAPPER_HOST_ARCH} | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y gcc ca-certificates git wget curl vim less file zip && \ | ||
rm -f /bin/sh && ln -s /bin/bash /bin/sh | ||
|
||
ENV GOLANG_ARCH_amd64=amd64 GOLANG_ARCH_arm=armv6l GOLANG_ARCH=GOLANG_ARCH_${ARCH} \ | ||
GOPATH=/go PATH=/go/bin:/usr/local/go/bin:${PATH} SHELL=/bin/bash | ||
|
||
RUN wget -O - https://storage.googleapis.com/golang/go1.9.3.linux-${!GOLANG_ARCH}.tar.gz | tar -xzf - -C /usr/local && \ | ||
go get github.com/rancher/trash && go get golang.org/x/lint/golint && go get -u github.com/jteeuwen/go-bindata/... | ||
|
||
ENV DOCKER_URL_amd64=https://get.docker.com/builds/Linux/x86_64/docker-1.10.3 \ | ||
DOCKER_URL_arm=https://github.com/rancher/docker/releases/download/v1.10.3-ros1/docker-1.10.3_arm \ | ||
DOCKER_URL=DOCKER_URL_${ARCH} | ||
|
||
RUN wget -O - ${!DOCKER_URL} > /usr/bin/docker && chmod +x /usr/bin/docker | ||
|
||
ENV DAPPER_SOURCE /go/src/k8s.io/ingress-nginx/ | ||
ENV DAPPER_OUTPUT ./bin ./dist | ||
ENV DAPPER_DOCKER_SOCKET true | ||
ENV DAPPER_ENV CROSS TAG | ||
ENV TRASH_CACHE ${DAPPER_SOURCE}/.trash-cache | ||
ENV HOME ${DAPPER_SOURCE} | ||
WORKDIR ${DAPPER_SOURCE} | ||
|
||
ENTRYPOINT ["./scripts/entry"] | ||
CMD ["ci"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,224 +1,23 @@ | ||
# Copyright 2017 The Kubernetes Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
TARGETS := $(shell ls scripts) | ||
|
||
.PHONY: all | ||
all: all-container | ||
.dapper: | ||
@echo Downloading dapper | ||
@curl -sL https://releases.rancher.com/dapper/latest/dapper-`uname -s`-`uname -m` > .dapper.tmp | ||
@@chmod +x .dapper.tmp | ||
@./.dapper.tmp -v | ||
@mv .dapper.tmp .dapper | ||
|
||
BUILDTAGS= | ||
$(TARGETS): .dapper | ||
./.dapper $@ | ||
|
||
# Use the 0.0 tag for testing, it shouldn't clobber any release builds | ||
TAG?=0.14.0 | ||
REGISTRY?=quay.io/kubernetes-ingress-controller | ||
GOOS?=linux | ||
DOCKER?=docker | ||
SED_I?=sed -i | ||
GOHOSTOS ?= $(shell go env GOHOSTOS) | ||
trash: .dapper | ||
./.dapper -m bind trash | ||
|
||
ifeq ($(GOHOSTOS),darwin) | ||
SED_I=sed -i '' | ||
endif | ||
trash-keep: .dapper | ||
./.dapper -m bind trash -k | ||
|
||
REPO_INFO=$(shell git config --get remote.origin.url) | ||
deps: trash | ||
|
||
ifndef COMMIT | ||
COMMIT := git-$(shell git rev-parse --short HEAD) | ||
endif | ||
.DEFAULT_GOAL := ci | ||
|
||
PKG=k8s.io/ingress-nginx | ||
|
||
ARCH ?= $(shell go env GOARCH) | ||
GOARCH = ${ARCH} | ||
DUMB_ARCH = ${ARCH} | ||
|
||
ALL_ARCH = amd64 arm arm64 ppc64le s390x | ||
|
||
QEMUVERSION=v2.9.1-1 | ||
|
||
BUSTED_ARGS=-v --pattern=_test | ||
|
||
IMGNAME = nginx-ingress-controller | ||
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.44 | ||
|
||
ifeq ($(ARCH),arm) | ||
QEMUARCH=arm | ||
GOARCH=arm | ||
DUMB_ARCH=armhf | ||
endif | ||
ifeq ($(ARCH),arm64) | ||
QEMUARCH=aarch64 | ||
endif | ||
ifeq ($(ARCH),ppc64le) | ||
QEMUARCH=ppc64le | ||
GOARCH=ppc64le | ||
DUMB_ARCH=ppc64el | ||
endif | ||
ifeq ($(ARCH),s390x) | ||
QEMUARCH=s390x | ||
endif | ||
|
||
TEMP_DIR := $(shell mktemp -d) | ||
|
||
DOCKERFILE := $(TEMP_DIR)/rootfs/Dockerfile | ||
|
||
.PHONY: image-info | ||
image-info: | ||
echo -n '{"image":"$(IMAGE)","tag":"$(TAG)"}' | ||
|
||
.PHONY: sub-container-% | ||
sub-container-%: | ||
$(MAKE) ARCH=$* build container | ||
|
||
.PHONY: sub-push-% | ||
sub-push-%: | ||
$(MAKE) ARCH=$* push | ||
|
||
.PHONY: all-container | ||
all-container: $(addprefix sub-container-,$(ALL_ARCH)) | ||
|
||
.PHONY: all-push | ||
all-push: $(addprefix sub-push-,$(ALL_ARCH)) | ||
|
||
.PHONY: container | ||
container: .container-$(ARCH) | ||
|
||
.PHONY: .container-$(ARCH) | ||
.container-$(ARCH): | ||
cp -RP ./* $(TEMP_DIR) | ||
$(SED_I) "s|BASEIMAGE|$(BASEIMAGE)|g" $(DOCKERFILE) | ||
$(SED_I) "s|QEMUARCH|$(QEMUARCH)|g" $(DOCKERFILE) | ||
$(SED_I) "s|DUMB_ARCH|$(DUMB_ARCH)|g" $(DOCKERFILE) | ||
|
||
ifeq ($(ARCH),amd64) | ||
# When building "normally" for amd64, remove the whole line, it has no part in the amd64 image | ||
$(SED_I) "/CROSS_BUILD_/d" $(DOCKERFILE) | ||
else | ||
# When cross-building, only the placeholder "CROSS_BUILD_" should be removed | ||
# Register /usr/bin/qemu-ARCH-static as the handler for ARM binaries in the kernel | ||
$(DOCKER) run --rm --privileged multiarch/qemu-user-static:register --reset | ||
curl -sSL https://github.com/multiarch/qemu-user-static/releases/download/$(QEMUVERSION)/x86_64_qemu-$(QEMUARCH)-static.tar.gz | tar -xz -C $(TEMP_DIR)/rootfs | ||
$(SED_I) "s/CROSS_BUILD_//g" $(DOCKERFILE) | ||
endif | ||
|
||
$(DOCKER) build -t $(MULTI_ARCH_IMG):$(TAG) $(TEMP_DIR)/rootfs | ||
|
||
ifeq ($(ARCH), amd64) | ||
# This is for to maintain the backward compatibility | ||
$(DOCKER) tag $(MULTI_ARCH_IMG):$(TAG) $(IMAGE):$(TAG) | ||
endif | ||
|
||
.PHONY: push | ||
push: .push-$(ARCH) | ||
|
||
.PHONY: .push-$(ARCH) | ||
.push-$(ARCH): | ||
$(DOCKER) push $(MULTI_ARCH_IMG):$(TAG) | ||
ifeq ($(ARCH), amd64) | ||
$(DOCKER) push $(IMAGE):$(TAG) | ||
endif | ||
|
||
.PHONY: clean | ||
clean: | ||
$(DOCKER) rmi -f $(MULTI_ARCH_IMG):$(TAG) || true | ||
|
||
.PHONE: code-generator | ||
code-generator: | ||
go-bindata -nometadata -o internal/file/bindata.go -prefix="rootfs" -pkg=file -ignore=Dockerfile -ignore=".DS_Store" rootfs/... | ||
|
||
.PHONY: build | ||
build: clean | ||
CGO_ENABLED=0 GOOS=${GOOS} GOARCH=${GOARCH} go build -a -installsuffix cgo \ | ||
-ldflags "-s -w -X ${PKG}/version.RELEASE=${TAG} -X ${PKG}/version.COMMIT=${COMMIT} -X ${PKG}/version.REPO=${REPO_INFO}" \ | ||
-o ${TEMP_DIR}/rootfs/nginx-ingress-controller ${PKG}/cmd/nginx | ||
|
||
.PHONY: verify-all | ||
verify-all: | ||
@./hack/verify-all.sh | ||
|
||
.PHONY: test | ||
test: | ||
@go test -v -race -tags "$(BUILDTAGS) cgo" $(shell go list ${PKG}/... | grep -v vendor | grep -v '/test/e2e') | ||
|
||
.PHONY: lua-test | ||
lua-test: | ||
@busted $(BUSTED_ARGS) ./rootfs/etc/nginx/lua/test; | ||
|
||
.PHONY: e2e-image | ||
e2e-image: sub-container-amd64 | ||
TAG=$(TAG) IMAGE=$(MULTI_ARCH_IMG) docker tag $(IMAGE):$(TAG) $(IMAGE):test | ||
docker images | ||
|
||
.PHONY: e2e-test | ||
e2e-test: | ||
@ginkgo version || go get -u github.com/onsi/ginkgo/ginkgo | ||
@ginkgo build ./test/e2e | ||
@KUBECONFIG=${HOME}/.kube/config ginkgo -randomizeSuites -randomizeAllSpecs -flakeAttempts=2 -p -trace -nodes=2 ./test/e2e/e2e.test | ||
|
||
.PHONY: cover | ||
cover: | ||
@rm -rf coverage.txt | ||
@for d in `go list ./... | grep -v vendor | grep -v '/test/e2e'`; do \ | ||
t=$$(date +%s); \ | ||
go test -coverprofile=cover.out -covermode=atomic $$d || exit 1; \ | ||
echo "Coverage test $$d took $$(($$(date +%s)-t)) seconds"; \ | ||
if [ -f cover.out ]; then \ | ||
cat cover.out >> coverage.txt; \ | ||
rm cover.out; \ | ||
fi; \ | ||
done | ||
@echo "Uploading coverage results..." | ||
@curl -s https://codecov.io/bash | bash | ||
|
||
.PHONY: vet | ||
vet: | ||
@go vet $(shell go list ${PKG}/... | grep -v vendor) | ||
|
||
.PHONY: luacheck | ||
luacheck: | ||
luacheck -q ./rootfs/etc/nginx/lua/ | ||
|
||
.PHONY: release | ||
release: all-container all-push | ||
echo "done" | ||
|
||
.PHONY: docker-build | ||
docker-build: all-container | ||
|
||
.PHONY: docker-push | ||
docker-push: all-push | ||
|
||
.PHONY: check_dead_links | ||
check_dead_links: | ||
docker run -t -v $$PWD:/tmp aledbf/awesome_bot:0.1 --allow-dupe --allow-redirect $(shell find $$PWD -mindepth 1 -name "*.md" -printf '%P\n' | grep -v vendor | grep -v Changelog.md) | ||
|
||
.PHONY: dep-ensure | ||
dep-ensure: | ||
dep version || go get -u github.com/golang/dep/cmd/dep | ||
dep ensure -v | ||
dep prune -v | ||
|
||
.PHONY: dev-env | ||
dev-env: | ||
@./hack/build-dev-env.sh | ||
|
||
.PHONY: live-docs | ||
live-docs: | ||
@docker run --rm -it -p 3000:3000 -v ${PWD}:/docs aledbf/mkdocs:0.1 | ||
|
||
.PHONY: build-docs | ||
build-docs: | ||
@docker run --rm -it -v ${PWD}:/docs aledbf/mkdocs:0.1 build | ||
.PHONY: $(TARGETS) |
Oops, something went wrong.