2017-10-17 22:50:27 +00:00
|
|
|
# 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.
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: all
|
2017-11-12 03:40:10 +00:00
|
|
|
all: all-container
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2017-10-06 19:58:36 +00:00
|
|
|
# Use the 0.0 tag for testing, it shouldn't clobber any release builds
|
2019-04-13 21:45:30 +00:00
|
|
|
TAG ?= 0.24.1
|
2018-07-06 03:23:27 +00:00
|
|
|
REGISTRY ?= quay.io/kubernetes-ingress-controller
|
|
|
|
DOCKER ?= docker
|
|
|
|
SED_I ?= sed -i
|
2017-10-06 19:58:36 +00:00
|
|
|
GOHOSTOS ?= $(shell go env GOHOSTOS)
|
2018-05-26 16:48:59 +00:00
|
|
|
|
|
|
|
# e2e settings
|
|
|
|
# Allow limiting the scope of the e2e tests. By default run everything
|
2018-07-06 03:23:27 +00:00
|
|
|
FOCUS ?= .*
|
2018-05-26 16:48:59 +00:00
|
|
|
# number of parallel test
|
2019-03-20 21:00:00 +00:00
|
|
|
E2E_NODES ?= 10
|
2019-02-22 14:03:42 +00:00
|
|
|
# slow test only if takes > 50s
|
|
|
|
SLOW_E2E_THRESHOLD ?= 50
|
2018-07-07 17:46:18 +00:00
|
|
|
|
2017-10-06 19:58:36 +00:00
|
|
|
ifeq ($(GOHOSTOS),darwin)
|
|
|
|
SED_I=sed -i ''
|
|
|
|
endif
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2017-10-06 19:58:36 +00:00
|
|
|
REPO_INFO=$(shell git config --get remote.origin.url)
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2018-07-06 03:23:27 +00:00
|
|
|
ifndef GIT_COMMIT
|
|
|
|
GIT_COMMIT := git-$(shell git rev-parse --short HEAD)
|
2017-10-06 19:58:36 +00:00
|
|
|
endif
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2018-07-06 03:23:27 +00:00
|
|
|
PKG = k8s.io/ingress-nginx
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2017-10-06 19:58:36 +00:00
|
|
|
ARCH ?= $(shell go env GOARCH)
|
|
|
|
GOARCH = ${ARCH}
|
|
|
|
DUMB_ARCH = ${ARCH}
|
2019-02-28 15:54:43 +00:00
|
|
|
KUBECTL_CONTEXT = $(shell kubectl config current-context)
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2018-08-02 20:58:58 +00:00
|
|
|
GOBUILD_FLAGS :=
|
|
|
|
|
2018-12-06 18:59:14 +00:00
|
|
|
ALL_ARCH = amd64 arm64
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2018-10-29 13:58:06 +00:00
|
|
|
QEMUVERSION = v3.0.0
|
2017-10-06 19:58:36 +00:00
|
|
|
|
2018-07-06 03:23:27 +00:00
|
|
|
BUSTED_ARGS =-v --pattern=_test
|
2018-04-23 14:46:28 +00:00
|
|
|
|
2017-10-06 19:58:36 +00:00
|
|
|
IMGNAME = nginx-ingress-controller
|
|
|
|
IMAGE = $(REGISTRY)/$(IMGNAME)
|
|
|
|
MULTI_ARCH_IMG = $(IMAGE)-$(ARCH)
|
|
|
|
|
|
|
|
# Set default base image dynamically for each arch
|
2019-04-18 02:45:51 +00:00
|
|
|
BASEIMAGE?=quay.io/kubernetes-ingress-controller/nginx-$(ARCH):0.85
|
2017-10-06 19:58:36 +00:00
|
|
|
|
|
|
|
ifeq ($(ARCH),arm64)
|
2018-07-06 03:23:27 +00:00
|
|
|
QEMUARCH=aarch64
|
2017-10-06 19:58:36 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
TEMP_DIR := $(shell mktemp -d)
|
|
|
|
|
2018-08-02 20:58:58 +00:00
|
|
|
DEF_VARS:=ARCH=$(ARCH) \
|
2018-07-06 03:23:27 +00:00
|
|
|
TAG=$(TAG) \
|
|
|
|
PKG=$(PKG) \
|
|
|
|
GOARCH=$(GOARCH) \
|
|
|
|
GIT_COMMIT=$(GIT_COMMIT) \
|
|
|
|
REPO_INFO=$(REPO_INFO) \
|
|
|
|
PWD=$(PWD)
|
|
|
|
|
2017-10-06 19:58:36 +00:00
|
|
|
DOCKERFILE := $(TEMP_DIR)/rootfs/Dockerfile
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: image-info
|
2017-10-24 03:30:20 +00:00
|
|
|
image-info:
|
|
|
|
echo -n '{"image":"$(IMAGE)","tag":"$(TAG)"}'
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: sub-container-%
|
2017-10-06 19:58:36 +00:00
|
|
|
sub-container-%:
|
|
|
|
$(MAKE) ARCH=$* build container
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: sub-push-%
|
2017-10-06 19:58:36 +00:00
|
|
|
sub-push-%:
|
|
|
|
$(MAKE) ARCH=$* push
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: all-container
|
2017-10-06 19:58:36 +00:00
|
|
|
all-container: $(addprefix sub-container-,$(ALL_ARCH))
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: all-push
|
2017-10-06 19:58:36 +00:00
|
|
|
all-push: $(addprefix sub-push-,$(ALL_ARCH))
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: container
|
2018-08-02 20:58:58 +00:00
|
|
|
container: clean-container .container-$(ARCH)
|
2017-11-12 04:51:41 +00:00
|
|
|
|
|
|
|
.PHONY: .container-$(ARCH)
|
2017-10-06 19:58:36 +00:00
|
|
|
.container-$(ARCH):
|
2018-08-02 20:58:58 +00:00
|
|
|
@echo "+ Copying artifact to temporary directory"
|
|
|
|
mkdir -p $(TEMP_DIR)/rootfs
|
|
|
|
cp bin/$(ARCH)/nginx-ingress-controller $(TEMP_DIR)/rootfs/nginx-ingress-controller
|
2019-02-08 16:25:04 +00:00
|
|
|
cp bin/$(ARCH)/dbg $(TEMP_DIR)/rootfs/dbg
|
2018-08-02 20:58:58 +00:00
|
|
|
@echo "+ Building container image $(MULTI_ARCH_IMG):$(TAG)"
|
2017-10-17 18:57:58 +00:00
|
|
|
cp -RP ./* $(TEMP_DIR)
|
2018-03-16 16:32:45 +00:00
|
|
|
$(SED_I) "s|BASEIMAGE|$(BASEIMAGE)|g" $(DOCKERFILE)
|
2017-10-06 19:58:36 +00:00
|
|
|
$(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
|
|
|
|
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
|
|
|
|
|
2018-07-06 03:23:27 +00:00
|
|
|
$(DOCKER) build --no-cache --pull -t $(MULTI_ARCH_IMG):$(TAG) $(TEMP_DIR)/rootfs
|
2017-10-06 19:58:36 +00:00
|
|
|
|
|
|
|
ifeq ($(ARCH), amd64)
|
2018-04-27 12:25:58 +00:00
|
|
|
# This is for maintaining backward compatibility
|
2017-10-06 19:58:36 +00:00
|
|
|
$(DOCKER) tag $(MULTI_ARCH_IMG):$(TAG) $(IMAGE):$(TAG)
|
|
|
|
endif
|
|
|
|
|
2018-08-02 20:58:58 +00:00
|
|
|
.PHONY: clean-container
|
|
|
|
clean-container:
|
|
|
|
@echo "+ Deleting container image $(MULTI_ARCH_IMG):$(TAG)"
|
|
|
|
$(DOCKER) rmi -f $(MULTI_ARCH_IMG):$(TAG) || true
|
|
|
|
|
2018-05-26 16:56:08 +00:00
|
|
|
.PHONY: register-qemu
|
|
|
|
register-qemu:
|
|
|
|
# Register /usr/bin/qemu-ARCH-static as the handler for binaries in multiple platforms
|
|
|
|
$(DOCKER) run --rm --privileged multiarch/qemu-user-static:register --reset
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: push
|
2017-10-06 19:58:36 +00:00
|
|
|
push: .push-$(ARCH)
|
2017-11-12 04:51:41 +00:00
|
|
|
|
|
|
|
.PHONY: .push-$(ARCH)
|
2017-10-06 19:58:36 +00:00
|
|
|
.push-$(ARCH):
|
|
|
|
$(DOCKER) push $(MULTI_ARCH_IMG):$(TAG)
|
|
|
|
ifeq ($(ARCH), amd64)
|
|
|
|
$(DOCKER) push $(IMAGE):$(TAG)
|
|
|
|
endif
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: build
|
2018-08-02 20:58:58 +00:00
|
|
|
build:
|
|
|
|
@echo "+ Building bin/$(ARCH)/nginx-ingress-controller"
|
2018-07-06 03:23:27 +00:00
|
|
|
@$(DEF_VARS) \
|
2018-08-02 20:58:58 +00:00
|
|
|
GOBUILD_FLAGS="$(GOBUILD_FLAGS)" \
|
2018-07-06 03:23:27 +00:00
|
|
|
build/go-in-docker.sh build/build.sh
|
|
|
|
|
2019-02-25 20:54:00 +00:00
|
|
|
.PHONY: build-plugin
|
|
|
|
build-plugin:
|
|
|
|
@$(DEF_VARS) \
|
|
|
|
GOBUILD_FLAGS="$(GOBUILD_FLAGS)" \
|
|
|
|
build/go-in-docker.sh build/build-plugin.sh
|
|
|
|
|
2018-08-02 20:58:58 +00:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -rf bin/ .gocache/ .env
|
2016-11-11 01:45:20 +00:00
|
|
|
|
2018-07-06 03:23:27 +00:00
|
|
|
.PHONY: static-check
|
|
|
|
static-check:
|
|
|
|
@$(DEF_VARS) \
|
|
|
|
build/go-in-docker.sh build/static-check.sh
|
2017-10-06 19:58:36 +00:00
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: test
|
2017-12-02 15:02:00 +00:00
|
|
|
test:
|
2018-07-06 03:23:27 +00:00
|
|
|
@$(DEF_VARS) \
|
2018-07-20 18:08:32 +00:00
|
|
|
DOCKER_OPTS="-i --net=host" \
|
2018-07-06 03:23:27 +00:00
|
|
|
build/go-in-docker.sh build/test.sh
|
2017-10-17 22:50:27 +00:00
|
|
|
|
2018-04-23 14:46:28 +00:00
|
|
|
.PHONY: lua-test
|
|
|
|
lua-test:
|
2018-07-06 03:23:27 +00:00
|
|
|
@$(DEF_VARS) \
|
|
|
|
BUSTED_ARGS="$(BUSTED_ARGS)" \
|
|
|
|
build/go-in-docker.sh build/test-lua.sh
|
2018-04-23 14:46:28 +00:00
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: e2e-test
|
2017-10-17 22:50:27 +00:00
|
|
|
e2e-test:
|
2019-02-28 15:54:43 +00:00
|
|
|
if [ "$(KUBECTL_CONTEXT)" != "minikube" ] && \
|
2019-03-20 21:00:00 +00:00
|
|
|
[ "$(KUBECTL_CONTEXT)" =~ .*kind* ] && \
|
2019-02-28 15:54:43 +00:00
|
|
|
[ "$(KUBECTL_CONTEXT)" != "dind" ] && \
|
|
|
|
[ "$(KUBECTL_CONTEXT)" != "docker-for-desktop" ]; then \
|
2019-03-20 21:00:00 +00:00
|
|
|
echo "kubectl context is "$(KUBECTL_CONTEXT)", but must be one of [minikube, *kind*, dind, docker-for-deskop]"; \
|
2019-02-28 15:54:43 +00:00
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
echo "Granting permissions to ingress-nginx e2e service account..."
|
|
|
|
kubectl create serviceaccount ingress-nginx-e2e || true
|
|
|
|
kubectl create clusterrolebinding permissive-binding \
|
2019-02-26 15:32:53 +00:00
|
|
|
--clusterrole=cluster-admin \
|
|
|
|
--user=admin \
|
|
|
|
--user=kubelet \
|
|
|
|
--serviceaccount=default:ingress-nginx-e2e || true
|
2019-02-22 14:03:42 +00:00
|
|
|
|
|
|
|
kubectl run --rm -i --tty \
|
|
|
|
--attach \
|
|
|
|
--restart=Never \
|
|
|
|
--generator=run-pod/v1 \
|
|
|
|
--env="E2E_NODES=$(E2E_NODES)" \
|
|
|
|
--env="FOCUS=$(FOCUS)" \
|
|
|
|
--env="SLOW_E2E_THRESHOLD=$(SLOW_E2E_THRESHOLD)" \
|
|
|
|
--overrides='{ "apiVersion": "v1", "spec":{"serviceAccountName": "ingress-nginx-e2e"}}' \
|
|
|
|
e2e --image=nginx-ingress-controller:e2e
|
|
|
|
|
|
|
|
.PHONY: e2e-test-image
|
|
|
|
e2e-test-image:
|
2019-02-26 15:32:53 +00:00
|
|
|
make -C test/e2e-image
|
|
|
|
|
|
|
|
.PHONY: e2e-test-binary
|
|
|
|
e2e-test-binary:
|
2019-02-22 14:03:42 +00:00
|
|
|
@$(DEF_VARS) \
|
|
|
|
DOCKER_OPTS="-i --net=host" \
|
|
|
|
build/go-in-docker.sh build/build-e2e.sh
|
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: cover
|
2017-11-23 16:46:23 +00:00
|
|
|
cover:
|
2018-07-06 03:23:27 +00:00
|
|
|
@$(DEF_VARS) \
|
2018-07-20 18:08:32 +00:00
|
|
|
DOCKER_OPTS="-i --net=host" \
|
2018-07-06 03:23:27 +00:00
|
|
|
build/go-in-docker.sh build/cover.sh
|
|
|
|
|
|
|
|
echo "Uploading coverage results..."
|
2018-02-20 16:27:02 +00:00
|
|
|
@curl -s https://codecov.io/bash | bash
|
2016-12-15 12:50:02 +00:00
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: vet
|
2017-10-06 19:58:36 +00:00
|
|
|
vet:
|
|
|
|
@go vet $(shell go list ${PKG}/... | grep -v vendor)
|
2017-06-30 20:19:41 +00:00
|
|
|
|
2017-11-12 04:51:41 +00:00
|
|
|
.PHONY: release
|
2017-10-06 19:58:36 +00:00
|
|
|
release: all-container all-push
|
|
|
|
echo "done"
|
2017-10-06 20:11:04 +00:00
|
|
|
|
2017-10-21 01:24:57 +00:00
|
|
|
.PHONY: check_dead_links
|
|
|
|
check_dead_links:
|
2018-07-06 03:23:27 +00:00
|
|
|
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)
|
2018-04-20 16:47:56 +00:00
|
|
|
|
|
|
|
.PHONY: dep-ensure
|
|
|
|
dep-ensure:
|
2019-04-15 12:34:23 +00:00
|
|
|
GO111MODULE=on go mod tidy -v
|
2018-05-26 15:27:53 +00:00
|
|
|
find vendor -name '*_test.go' -delete
|
2018-04-24 20:29:31 +00:00
|
|
|
|
|
|
|
.PHONY: dev-env
|
|
|
|
dev-env:
|
2018-07-06 03:23:27 +00:00
|
|
|
@build/dev-env.sh
|
2018-04-26 21:51:12 +00:00
|
|
|
|
|
|
|
.PHONY: live-docs
|
|
|
|
live-docs:
|
2018-07-13 15:48:08 +00:00
|
|
|
@docker build --pull -t ingress-nginx/mkdocs build/mkdocs
|
|
|
|
@docker run --rm -it -p 3000:3000 -v ${PWD}:/docs ingress-nginx/mkdocs
|
2018-04-26 21:51:12 +00:00
|
|
|
|
|
|
|
.PHONY: build-docs
|
|
|
|
build-docs:
|
2018-07-13 15:48:08 +00:00
|
|
|
@docker build --pull -t ingress-nginx/mkdocs build/mkdocs
|
|
|
|
@docker run --rm -it -v ${PWD}:/docs ingress-nginx/mkdocs build
|
2018-08-11 12:26:14 +00:00
|
|
|
|
|
|
|
.PHONY: misspell
|
|
|
|
misspell:
|
|
|
|
@go get github.com/client9/misspell/cmd/misspell
|
|
|
|
misspell \
|
|
|
|
-locale US \
|
|
|
|
-error \
|
|
|
|
cmd/* internal/* deploy/* docs/* design/* test/* README.md
|