ingress-nginx-helm/Makefile

286 lines
7.9 KiB
Makefile
Raw Normal View History

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.
# Add the following 'help' target to your Makefile
# And add help text after each target name starting with '\#\#'
.DEFAULT_GOAL:=help
2016-11-11 01:45:20 +00:00
.EXPORT_ALL_VARIABLES:
ifndef VERBOSE
.SILENT:
endif
# set default shell
SHELL=/bin/bash -o pipefail -o errexit
2017-10-06 19:58:36 +00:00
# Use the 0.0 tag for testing, it shouldn't clobber any release builds
2020-02-15 11:28:22 +00:00
TAG ?= 0.29.0
# Use docker to run makefile tasks
USE_DOCKER ?= true
# Disable run docker tasks if running in prow.
# only checks the existence of the variable, not the value.
ifdef DIND_TASKS
USE_DOCKER=false
endif
# e2e settings
# Allow limiting the scope of the e2e tests. By default run everything
2018-07-06 03:23:27 +00:00
FOCUS ?= .*
# number of parallel test
E2E_NODES ?= 15
# slow test only if takes > 50s
SLOW_E2E_THRESHOLD ?= 50
# run e2e test suite with tests that check for memory leaks? (default is false)
E2E_CHECK_LEAKS ?=
2019-05-14 02:31:30 +00:00
REPO_INFO ?= $(shell git config --get remote.origin.url)
GIT_COMMIT ?= git-$(shell git rev-parse --short HEAD)
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
2018-07-06 03:23:27 +00:00
BUSTED_ARGS =-v --pattern=_test
ARCH ?= $(shell go env GOARCH)
2019-05-24 14:33:16 +00:00
REGISTRY ?= quay.io/kubernetes-ingress-controller
2019-06-26 12:12:00 +00:00
BASE_IMAGE ?= quay.io/kubernetes-ingress-controller/nginx
BASE_TAG ?= 6ab10fa68ddea57fa51b37284b2678ac073ae74b
GOARCH=$(ARCH)
GOBUILD_FLAGS := -v
2019-09-22 20:18:50 +00:00
# use vendor directory instead of go modules https://github.com/golang/go/wiki/Modules
GO111MODULE=off
2017-10-06 19:58:36 +00:00
TEMP_DIR := $(shell mktemp -d)
DOCKERFILE := $(TEMP_DIR)/rootfs/Dockerfile
help: ## Display this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
# internal task
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
# internal task
2017-11-12 04:51:41 +00:00
.PHONY: sub-push-%
sub-push-%: ## Publish image for a particular arch.
2017-10-06 19:58:36 +00:00
$(MAKE) ARCH=$* push
2017-11-12 04:51:41 +00:00
.PHONY: container
container: clean-container .container-$(ARCH) ## Build image for a particular arch.
2017-11-12 04:51:41 +00:00
# internal task to build image for a particular arch.
2017-11-12 04:51:41 +00:00
.PHONY: .container-$(ARCH)
.container-$(ARCH): init-docker-buildx
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
cp bin/$(ARCH)/wait-shutdown $(TEMP_DIR)/rootfs/wait-shutdown
2019-05-14 02:31:30 +00:00
cp -RP rootfs/* $(TEMP_DIR)/rootfs
2017-10-06 19:58:36 +00:00
echo "Building docker image ($(ARCH))..."
# buildx assumes images are multi-arch
docker buildx build \
--pull \
--load \
--no-cache \
--progress plain \
--platform linux/$(ARCH) \
--build-arg BASE_IMAGE="$(BASE_IMAGE)-$(ARCH):$(BASE_TAG)" \
--build-arg VERSION="$(TAG)" \
-t $(REGISTRY)/nginx-ingress-controller-${ARCH}:$(TAG) $(TEMP_DIR)/rootfs
2017-10-06 19:58:36 +00:00
.PHONY: clean-container
clean-container: ## Removes local image
echo "removing old image $(BASE_IMAGE)-$(ARCH):$(TAG)"
@docker rmi -f $(BASE_IMAGE)-$(ARCH):$(TAG) || true
2017-11-12 04:51:41 +00:00
.PHONY: push
push: .push-$(ARCH) ## Publish image for a particular arch.
2017-11-12 04:51:41 +00:00
# internal task
2017-11-12 04:51:41 +00:00
.PHONY: .push-$(ARCH)
2017-10-06 19:58:36 +00:00
.push-$(ARCH):
docker push $(BASE_IMAGE)-$(ARCH):$(TAG)
2016-11-11 01:45:20 +00:00
2017-11-12 04:51:41 +00:00
.PHONY: build
build: check-go-version ## Build ingress controller, debug tool and pre-stop hook.
ifeq ($(USE_DOCKER), true)
@build/run-in-docker.sh \
PKG=$(PKG) \
ARCH=$(ARCH) \
GIT_COMMIT=$(GIT_COMMIT) \
REPO_INFO=$(REPO_INFO) \
TAG=$(TAG) \
GOBUILD_FLAGS=$(GOBUILD_FLAGS) \
build/build.sh
else
2019-05-14 22:59:01 +00:00
@build/build.sh
endif
2018-07-06 03:23:27 +00:00
2019-02-25 20:54:00 +00:00
.PHONY: build-plugin
build-plugin: check-go-version ## Build ingress-nginx krew plugin.
ifeq ($(USE_DOCKER), true)
@build/run-in-docker.sh \
PKG=$(PKG) \
ARCH=$(ARCH) \
GIT_COMMIT=$(GIT_COMMIT) \
REPO_INFO=$(REPO_INFO) \
TAG=$(TAG) \
GOBUILD_FLAGS=$(GOBUILD_FLAGS) \
build/build-plugin.sh
else
2019-05-14 22:59:01 +00:00
@build/build-plugin.sh
endif
2019-02-25 20:54:00 +00:00
.PHONY: clean
clean: ## Remove .gocache directory.
rm -rf bin/ .gocache/ .cache/
2016-11-11 01:45:20 +00:00
2018-07-06 03:23:27 +00:00
.PHONY: static-check
static-check: ## Run verification script for boilerplate, codegen, gofmt, golint and lualint.
ifeq ($(USE_DOCKER), true)
@build/run-in-docker.sh \
build/static-check.sh
else
2019-05-14 22:59:01 +00:00
@build/static-check.sh
endif
2017-10-06 19:58:36 +00:00
2017-11-12 04:51:41 +00:00
.PHONY: test
test: check-go-version ## Run go unit tests.
ifeq ($(USE_DOCKER), true)
@build/run-in-docker.sh \
PKG=$(PKG) \
ARCH=$(ARCH) \
GIT_COMMIT=$(GIT_COMMIT) \
REPO_INFO=$(REPO_INFO) \
TAG=$(TAG) \
GOBUILD_FLAGS=$(GOBUILD_FLAGS) \
build/test.sh
else
2019-05-14 22:59:01 +00:00
@build/test.sh
endif
2017-10-17 22:50:27 +00:00
.PHONY: lua-test
lua-test: ## Run lua unit tests.
ifeq ($(USE_DOCKER), true)
@build/run-in-docker.sh \
BUSTED_ARGS=$(BUSTED_ARGS) \
build/test-lua.sh
else
2019-05-14 22:59:01 +00:00
@build/test-lua.sh
endif
2017-11-12 04:51:41 +00:00
.PHONY: e2e-test
e2e-test: check-go-version ## Run e2e tests (expects access to a working Kubernetes cluster).
@build/run-e2e-suite.sh
.PHONY: e2e-test-image
e2e-test-image: ## Build image for e2e tests.
@make -C test/e2e-image
2019-02-26 15:32:53 +00:00
.PHONY: e2e-test-binary
e2e-test-binary: check-go-version ## Build ginkgo binary for e2e tests.
ifeq ($(USE_DOCKER), true)
@build/run-in-docker.sh \
ginkgo build ./test/e2e
else
2019-05-14 22:59:01 +00:00
@ginkgo build ./test/e2e
endif
.PHONY: print-e2e-suite
print-e2e-suite: e2e-test-binary ## Prints information about the suite of e2e tests.
@build/run-in-docker.sh \
hack/print-e2e-suite.sh
2017-11-12 04:51:41 +00:00
.PHONY: cover
cover: check-go-version ## Run go coverage unit tests.
2019-05-14 22:59:01 +00:00
@build/cover.sh
2018-07-06 03:23:27 +00:00
echo "Uploading coverage results..."
2019-05-14 22:59:01 +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:
2019-05-14 22:59:01 +00:00
@go vet $(shell go list ${PKG}/internal/... | grep -v vendor)
2017-10-21 01:24:57 +00:00
.PHONY: check_dead_links
check_dead_links: ## Check if the documentation contains dead links.
2019-05-14 22:59:01 +00:00
@docker run -t \
2018-07-06 03:23:27 +00:00
-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: check-go-version ## Update and vendo go dependencies.
2020-02-05 12:41:04 +00:00
GO111MODULE=on go mod tidy -v
2018-05-26 15:27:53 +00:00
find vendor -name '*_test.go' -delete
2020-02-05 12:41:04 +00:00
GO111MODULE=on go mod vendor
2018-04-24 20:29:31 +00:00
.PHONY: dev-env
dev-env: check-go-version ## Starts a local Kubernetes cluster using minikube, building and deploying the ingress controller.
@build/dev-env.sh
.PHONY: live-docs
live-docs: ## Build and launch a local copy of the documentation website in http://localhost:3000
2020-02-09 23:50:27 +00:00
@docker buildx build \
--pull \
--load \
--progress plain \
-t ingress-nginx/mkdocs images/mkdocs
2019-05-14 22:59:01 +00:00
@docker run --rm -it -p 3000:3000 -v ${PWD}:/docs ingress-nginx/mkdocs
.PHONY: build-docs
build-docs: ## Build documentation (output in ./site directory).
2019-09-03 19:33:11 +00:00
@docker build --pull -t ingress-nginx/mkdocs images/mkdocs
2019-05-14 22:59:01 +00:00
@docker run --rm -v ${PWD}:/docs ingress-nginx/mkdocs build
2018-08-11 12:26:14 +00:00
.PHONY: misspell
misspell: check-go-version ## Check for spelling errors.
2019-05-14 22:59:01 +00:00
@go get github.com/client9/misspell/cmd/misspell
2018-08-11 12:26:14 +00:00
misspell \
-locale US \
-error \
cmd/* internal/* deploy/* docs/* design/* test/* README.md
2019-05-14 02:31:30 +00:00
2019-06-26 12:12:00 +00:00
.PHONY: kind-e2e-test
kind-e2e-test: check-go-version ## Run e2e tests using kind.
@test/e2e/run.sh
2019-06-26 12:12:00 +00:00
.PHONY: run-ingress-controller
run-ingress-controller: ## Run the ingress controller locally using a kubectl proxy connection.
2019-06-26 12:12:00 +00:00
@build/run-ingress-controller.sh
.PHONY: check-go-version
check-go-version:
@hack/check-go-version.sh
.PHONY: init-docker-buildx
init-docker-buildx:
ifeq ($(DIND_TASKS),)
ifneq ($(shell docker buildx 2>&1 >/dev/null; echo $?),)
$(error "buildx not available. Docker 19.03 or higher is required with experimental features enabled")
endif
docker run --rm --privileged docker/binfmt:66f9012c56a8316f9244ffd7622d7c21c1f6f28d
docker buildx create --name ingress-nginx --use || true
docker buildx inspect --bootstrap
endif