2019-03-28 10:42:06 +00:00
|
|
|
.PHONY: all docs docs-serve
|
2016-01-29 19:34:17 +00:00
|
|
|
|
2017-09-08 08:26:03 +00:00
|
|
|
SRCS = $(shell git ls-files '*.go' | grep -v '^vendor/')
|
2016-01-29 19:34:17 +00:00
|
|
|
|
2019-03-14 15:22:04 +00:00
|
|
|
TAG_NAME := $(shell git tag -l --contains HEAD)
|
|
|
|
SHA := $(shell git rev-parse HEAD)
|
|
|
|
VERSION_GIT := $(if $(TAG_NAME),$(TAG_NAME),$(SHA))
|
|
|
|
VERSION := $(if $(VERSION),$(VERSION),$(VERSION_GIT))
|
|
|
|
|
2015-09-27 13:56:53 +00:00
|
|
|
BIND_DIR := "dist"
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2016-10-31 02:36:31 +00:00
|
|
|
GIT_BRANCH := $(subst heads/,,$(shell git rev-parse --abbrev-ref HEAD 2>/dev/null))
|
2017-05-28 04:29:27 +00:00
|
|
|
TRAEFIK_DEV_IMAGE := traefik-dev$(if $(GIT_BRANCH),:$(subst /,-,$(GIT_BRANCH)))
|
2019-03-28 10:42:06 +00:00
|
|
|
|
2015-09-16 16:07:58 +00:00
|
|
|
REPONAME := $(shell echo $(REPO) | tr '[:upper:]' '[:lower:]')
|
2020-09-16 13:46:04 +00:00
|
|
|
TRAEFIK_IMAGE := $(if $(REPONAME),$(REPONAME),"traefik/traefik")
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
INTEGRATION_OPTS := $(if $(MAKE_DOCKER_HOST),-e "DOCKER_HOST=$(MAKE_DOCKER_HOST)", -e "TEST_CONTAINER=1" -v "/var/run/docker.sock:/var/run/docker.sock")
|
2016-05-23 14:07:35 +00:00
|
|
|
DOCKER_BUILD_ARGS := $(if $(DOCKER_VERSION), "--build-arg=DOCKER_VERSION=$(DOCKER_VERSION)",)
|
2019-03-28 10:42:06 +00:00
|
|
|
|
|
|
|
TRAEFIK_ENVS := \
|
|
|
|
-e OS_ARCH_ARG \
|
|
|
|
-e OS_PLATFORM_ARG \
|
|
|
|
-e TESTFLAGS \
|
|
|
|
-e VERBOSE \
|
|
|
|
-e VERSION \
|
|
|
|
-e CODENAME \
|
|
|
|
-e TESTDIRS \
|
|
|
|
-e CI \
|
|
|
|
-e CONTAINER=DOCKER # Indicator for integration tests that we are running inside a container.
|
|
|
|
|
2020-09-16 13:46:04 +00:00
|
|
|
TRAEFIK_MOUNT := -v "$(CURDIR)/$(BIND_DIR):/go/src/github.com/traefik/traefik/$(BIND_DIR)"
|
2017-05-03 04:00:05 +00:00
|
|
|
DOCKER_RUN_OPTS := $(TRAEFIK_ENVS) $(TRAEFIK_MOUNT) "$(TRAEFIK_DEV_IMAGE)"
|
2020-01-06 15:58:04 +00:00
|
|
|
DOCKER_NON_INTERACTIVE ?= false
|
2020-05-14 16:00:08 +00:00
|
|
|
DOCKER_RUN_TRAEFIK := docker run --add-host=host.docker.internal:127.0.0.1 $(INTEGRATION_OPTS) $(if $(DOCKER_NON_INTERACTIVE), , -it) $(DOCKER_RUN_OPTS)
|
2020-01-06 15:58:04 +00:00
|
|
|
DOCKER_RUN_TRAEFIK_NOTTY := docker run $(INTEGRATION_OPTS) $(if $(DOCKER_NON_INTERACTIVE), , -i) $(DOCKER_RUN_OPTS)
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
PRE_TARGET ?= build-dev-image
|
2015-09-16 16:07:58 +00:00
|
|
|
|
2020-09-07 08:22:03 +00:00
|
|
|
PLATFORM_URL := $(if $(PLATFORM_URL),$(PLATFORM_URL),"https://pilot.traefik.io")
|
|
|
|
|
2015-09-15 19:38:54 +00:00
|
|
|
default: binary
|
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Build Dev Docker image
|
|
|
|
build-dev-image: dist
|
|
|
|
docker build $(DOCKER_BUILD_ARGS) -t "$(TRAEFIK_DEV_IMAGE)" -f build.Dockerfile .
|
|
|
|
|
|
|
|
## Build Dev Docker image without cache
|
|
|
|
build-dev-image-no-cache: dist
|
|
|
|
docker build --no-cache -t "$(TRAEFIK_DEV_IMAGE)" -f build.Dockerfile .
|
|
|
|
|
|
|
|
## Create the "dist" directory
|
|
|
|
dist:
|
|
|
|
mkdir dist
|
|
|
|
|
|
|
|
## Build WebUI Docker image
|
|
|
|
build-webui-image:
|
2020-09-07 08:22:03 +00:00
|
|
|
docker build -t traefik-webui --build-arg ARG_PLATFORM_URL=$(PLATFORM_URL) -f webui/Dockerfile webui
|
2015-10-30 07:55:08 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Generate WebUI
|
|
|
|
generate-webui: build-webui-image
|
|
|
|
if [ ! -d "static" ]; then \
|
|
|
|
mkdir -p static; \
|
2019-07-15 08:58:03 +00:00
|
|
|
docker run --rm -v "$$PWD/static":'/src/static' traefik-webui npm run build:nc; \
|
2019-03-28 10:42:06 +00:00
|
|
|
docker run --rm -v "$$PWD/static":'/src/static' traefik-webui chown -R $(shell id -u):$(shell id -g) ../static; \
|
|
|
|
echo 'For more informations show `webui/readme.md`' > $$PWD/static/DONT-EDIT-FILES-IN-THIS-DIRECTORY.md; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
## Build the linux binary
|
|
|
|
binary: generate-webui $(PRE_TARGET)
|
|
|
|
$(if $(PRE_TARGET),$(DOCKER_RUN_TRAEFIK)) ./script/make.sh generate binary
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Build the binary for the standard plaforms (linux, darwin, windows)
|
|
|
|
crossbinary-default: generate-webui build-dev-image
|
2017-05-03 04:00:05 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK_NOTTY) ./script/make.sh generate crossbinary-default
|
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Build the binary for the standard plaforms (linux, darwin, windows) in parallel
|
2017-05-04 07:31:39 +00:00
|
|
|
crossbinary-default-parallel:
|
|
|
|
$(MAKE) generate-webui
|
2019-03-28 10:42:06 +00:00
|
|
|
$(MAKE) build-dev-image crossbinary-default
|
2017-05-04 07:31:39 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Run the unit and integration tests
|
|
|
|
test: build-dev-image
|
2015-09-27 13:56:53 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK) ./script/make.sh generate test-unit binary test-integration
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Run the unit tests
|
|
|
|
test-unit: $(PRE_TARGET)
|
|
|
|
$(if $(PRE_TARGET),$(DOCKER_RUN_TRAEFIK)) ./script/make.sh generate test-unit
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Pull all images for integration tests
|
|
|
|
pull-images:
|
|
|
|
grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml | awk '{print $$2}' | sort | uniq | xargs -P 6 -n 1 docker pull
|
2015-09-15 19:38:54 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Run the integration tests
|
|
|
|
test-integration: $(PRE_TARGET)
|
|
|
|
$(if $(PRE_TARGET),$(DOCKER_RUN_TRAEFIK),TEST_CONTAINER=1) ./script/make.sh generate binary test-integration
|
|
|
|
TEST_HOST=1 ./script/make.sh test-integration
|
2015-10-01 10:04:25 +00:00
|
|
|
|
2019-04-01 13:30:07 +00:00
|
|
|
## Validate code and docs
|
|
|
|
validate-files: $(PRE_TARGET)
|
|
|
|
$(if $(PRE_TARGET),$(DOCKER_RUN_TRAEFIK)) ./script/make.sh generate validate-lint validate-misspell
|
2019-05-10 15:24:06 +00:00
|
|
|
bash $(CURDIR)/script/validate-shell-script.sh
|
2019-04-01 13:30:07 +00:00
|
|
|
|
|
|
|
## Validate code, docs, and vendor
|
2019-03-28 10:42:06 +00:00
|
|
|
validate: $(PRE_TARGET)
|
|
|
|
$(if $(PRE_TARGET),$(DOCKER_RUN_TRAEFIK)) ./script/make.sh generate validate-lint validate-misspell validate-vendor
|
2019-05-10 15:24:06 +00:00
|
|
|
bash $(CURDIR)/script/validate-shell-script.sh
|
2015-09-22 09:29:41 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Clean up static directory and build a Docker Traefik image
|
|
|
|
build-image: binary
|
|
|
|
rm -rf static
|
2015-09-15 19:38:54 +00:00
|
|
|
docker build -t $(TRAEFIK_IMAGE) .
|
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Build a Docker Traefik image
|
|
|
|
build-image-dirty: binary
|
2017-06-13 13:16:08 +00:00
|
|
|
docker build -t $(TRAEFIK_IMAGE) .
|
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Start a shell inside the build env
|
|
|
|
shell: build-dev-image
|
|
|
|
$(DOCKER_RUN_TRAEFIK) /bin/bash
|
|
|
|
|
|
|
|
## Build documentation site
|
2019-02-26 13:50:07 +00:00
|
|
|
docs:
|
|
|
|
make -C ./docs docs
|
2018-07-12 16:26:03 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Serve the documentation site localy
|
2019-02-26 13:50:07 +00:00
|
|
|
docs-serve:
|
|
|
|
make -C ./docs docs-serve
|
2017-10-11 12:46:03 +00:00
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Generate CRD clientset
|
2019-03-14 14:56:06 +00:00
|
|
|
generate-crd:
|
|
|
|
./script/update-generated-crd-code.sh
|
|
|
|
|
2019-03-28 10:42:06 +00:00
|
|
|
## Create packages for the release
|
|
|
|
release-packages: generate-webui build-dev-image
|
2019-03-14 15:22:04 +00:00
|
|
|
rm -rf dist
|
2019-10-28 19:58:05 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK_NOTTY) goreleaser release --skip-publish --timeout="60m"
|
2019-03-14 15:22:04 +00:00
|
|
|
$(DOCKER_RUN_TRAEFIK_NOTTY) tar cfz dist/traefik-${VERSION}.src.tar.gz \
|
|
|
|
--exclude-vcs \
|
|
|
|
--exclude .idea \
|
|
|
|
--exclude .travis \
|
|
|
|
--exclude .semaphoreci \
|
|
|
|
--exclude .github \
|
|
|
|
--exclude dist .
|
|
|
|
$(DOCKER_RUN_TRAEFIK_NOTTY) chown -R $(shell id -u):$(shell id -g) dist/
|
2019-03-28 10:42:06 +00:00
|
|
|
|
|
|
|
## Format the Code
|
|
|
|
fmt:
|
|
|
|
gofmt -s -l -w $(SRCS)
|
|
|
|
|
|
|
|
run-dev:
|
|
|
|
go generate
|
2019-08-11 10:20:53 +00:00
|
|
|
GO111MODULE=on go build ./cmd/traefik
|
2019-03-28 10:42:06 +00:00
|
|
|
./traefik
|