2017-09-08 11:26:03 +03:00
SRCS = $( shell git ls-files '*.go' | grep -v '^vendor/' )
2016-01-29 22:34:17 +03:00
2019-03-14 18:22:04 +03: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) )
2016-10-31 05:36:31 +03:00
GIT_BRANCH := $( subst heads/,,$( shell git rev-parse --abbrev-ref HEAD 2>/dev/null) )
2017-05-28 07:29:27 +03:00
TRAEFIK_DEV_IMAGE := traefik-dev$( if $( GIT_BRANCH) ,:$( subst /,-,$( GIT_BRANCH) ) )
2019-03-28 13:42:06 +03:00
2015-09-16 19:07:58 +03:00
REPONAME := $( shell echo $( REPO) | tr '[:upper:]' '[:lower:]' )
2020-09-16 16:46:04 +03:00
TRAEFIK_IMAGE := $( if $( REPONAME) ,$( REPONAME) ,"traefik/traefik" )
2015-09-15 22:38:54 +03:00
2021-11-25 13:10:06 +03:00
INTEGRATION_OPTS := $( if $( MAKE_DOCKER_HOST) ,-e " DOCKER_HOST= $( MAKE_DOCKER_HOST) " ,-v "/var/run/docker.sock:/var/run/docker.sock" )
2016-05-23 17:07:35 +03:00
DOCKER_BUILD_ARGS := $( if $( DOCKER_VERSION) , " --build-arg=DOCKER_VERSION= $( DOCKER_VERSION) " ,)
2019-03-28 13:42:06 +03:00
2022-07-13 19:32:08 +03:00
# only used when running in docker
2019-03-28 13:42:06 +03:00
TRAEFIK_ENVS := \
-e OS_ARCH_ARG \
-e OS_PLATFORM_ARG \
-e TESTFLAGS \
-e VERBOSE \
-e VERSION \
-e CODENAME \
-e TESTDIRS \
-e CI \
2022-07-13 19:32:08 +03:00
-e IN_DOCKER = true # Indicator for integration tests that we are running inside a container.
2019-03-28 13:42:06 +03:00
2022-03-03 17:42:08 +03:00
TRAEFIK_MOUNT := -v " $( CURDIR) /dist:/go/src/github.com/traefik/traefik/dist "
2017-05-03 07:00:05 +03:00
DOCKER_RUN_OPTS := $( TRAEFIK_ENVS) $( TRAEFIK_MOUNT) " $( TRAEFIK_DEV_IMAGE) "
2020-01-06 18:58:04 +03:00
DOCKER_NON_INTERACTIVE ?= false
2021-11-25 13:10:06 +03:00
DOCKER_RUN_TRAEFIK := docker run $( INTEGRATION_OPTS) $( if $( DOCKER_NON_INTERACTIVE) , , -it) $( DOCKER_RUN_OPTS)
DOCKER_RUN_TRAEFIK_TEST := docker run --add-host= host.docker.internal:127.0.0.1 --rm --name= traefik --network traefik-test-network -v $( PWD) :$( PWD) -w $( PWD) $( INTEGRATION_OPTS) $( if $( DOCKER_NON_INTERACTIVE) , , -it) $( DOCKER_RUN_OPTS)
2020-01-06 18:58:04 +03:00
DOCKER_RUN_TRAEFIK_NOTTY := docker run $( INTEGRATION_OPTS) $( if $( DOCKER_NON_INTERACTIVE) , , -i) $( DOCKER_RUN_OPTS)
2015-09-15 22:38:54 +03:00
2022-03-03 17:42:08 +03:00
IN_DOCKER ?= true
2015-09-16 19:07:58 +03:00
2022-04-05 18:18:07 +03:00
.PHONY : default
2015-09-15 22:38:54 +03:00
default : binary
2022-04-05 18:18:07 +03:00
## Create the "dist" directory
dist :
mkdir -p dist
2019-03-28 13:42:06 +03:00
## Build Dev Docker image
2022-04-05 18:18:07 +03:00
.PHONY : build -dev -image
2019-03-28 13:42:06 +03:00
build-dev-image : dist
2022-04-05 18:18:07 +03:00
i f n e q ( "$(IN_DOCKER)" , "" )
2022-04-15 12:56:08 +03:00
docker build $( DOCKER_BUILD_ARGS) -t " $( TRAEFIK_DEV_IMAGE) " --build-arg HOST_PWD = " $( PWD) " -f build.Dockerfile .
2022-04-05 18:18:07 +03:00
e n d i f
2019-03-28 13:42:06 +03:00
## Build Dev Docker image without cache
2022-04-05 18:18:07 +03:00
.PHONY : build -dev -image -no -cache
2019-03-28 13:42:06 +03:00
build-dev-image-no-cache : dist
2022-04-05 18:18:07 +03:00
i f n e q ( "$(IN_DOCKER)" , "" )
2022-04-15 12:56:08 +03:00
docker build $( DOCKER_BUILD_ARGS) --no-cache -t " $( TRAEFIK_DEV_IMAGE) " --build-arg HOST_PWD = " $( PWD) " -f build.Dockerfile .
2022-04-05 18:18:07 +03:00
e n d i f
2019-03-28 13:42:06 +03:00
## Build WebUI Docker image
2022-04-05 18:18:07 +03:00
.PHONY : build -webui -image
2019-03-28 13:42:06 +03:00
build-webui-image :
2022-03-18 13:06:08 +03:00
docker build -t traefik-webui -f webui/Dockerfile webui
2015-10-30 10:55:08 +03:00
2022-02-18 17:44:08 +03:00
## Clean WebUI static generated assets
2022-04-05 18:18:07 +03:00
.PHONY : clean -webui
2022-02-18 17:44:08 +03:00
clean-webui :
rm -r webui/static
mkdir -p webui/static
2022-05-03 18:58:08 +03:00
printf 'For more information see `webui/readme.md`' > webui/static/DONT-EDIT-FILES-IN-THIS-DIRECTORY.md
2022-02-18 17:44:08 +03:00
2019-03-28 13:42:06 +03:00
## Generate WebUI
2022-03-04 17:28:07 +03:00
webui/static/index.html :
$( MAKE) build-webui-image
2022-04-15 12:56:08 +03:00
docker run --rm -v " $( PWD) /webui/static " :'/src/webui/static' traefik-webui npm run build:nc
docker run --rm -v " $( PWD) /webui/static " :'/src/webui/static' traefik-webui chown -R $( shell id -u) :$( shell id -g) ./static
2022-03-04 17:28:07 +03:00
2022-04-05 18:18:07 +03:00
.PHONY : generate -webui
2022-03-04 17:28:07 +03:00
generate-webui : webui /static /index .html
2019-03-28 13:42:06 +03:00
2022-03-03 17:42:08 +03:00
## Build the binary
2022-04-05 18:18:07 +03:00
.PHONY : binary
2022-03-03 17:42:08 +03:00
binary : generate -webui build -dev -image
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK) ) ./script/make.sh generate binary
## Build the linux binary locally
2022-04-05 18:18:07 +03:00
.PHONY : binary -debug
2022-03-03 17:42:08 +03:00
binary-debug : generate -webui
GOOS = linux ./script/make.sh binary
2015-09-15 22:38:54 +03:00
2021-03-04 11:02:03 +03:00
## Build the binary for the standard platforms (linux, darwin, windows)
2022-04-05 18:18:07 +03:00
.PHONY : crossbinary -default
2019-03-28 13:42:06 +03:00
crossbinary-default : generate -webui build -dev -image
2017-05-03 07:00:05 +03:00
$( DOCKER_RUN_TRAEFIK_NOTTY) ./script/make.sh generate crossbinary-default
2021-03-04 11:02:03 +03:00
## Build the binary for the standard platforms (linux, darwin, windows) in parallel
2022-04-05 18:18:07 +03:00
.PHONY : crossbinary -default -parallel
2017-05-04 10:31:39 +03:00
crossbinary-default-parallel :
$( MAKE) generate-webui
2019-03-28 13:42:06 +03:00
$( MAKE) build-dev-image crossbinary-default
2017-05-04 10:31:39 +03:00
2019-03-28 13:42:06 +03:00
## Run the unit and integration tests
2022-04-05 18:18:07 +03:00
.PHONY : test
2022-03-03 17:42:08 +03:00
test : build -dev -image
2021-11-25 13:10:06 +03:00
-docker network create traefik-test-network --driver bridge --subnet 172.31.42.0/24
trap 'docker network rm traefik-test-network' EXIT; \
2022-07-13 19:32:08 +03:00
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK_TEST) ) ./script/make.sh generate test-unit binary test-integration
2015-09-15 22:38:54 +03:00
2019-03-28 13:42:06 +03:00
## Run the unit tests
2022-04-05 18:18:07 +03:00
.PHONY : test -unit
2022-03-03 17:42:08 +03:00
test-unit : build -dev -image
2021-11-25 13:10:06 +03:00
-docker network create traefik-test-network --driver bridge --subnet 172.31.42.0/24
trap 'docker network rm traefik-test-network' EXIT; \
2022-03-03 17:42:08 +03:00
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK_TEST) ) ./script/make.sh generate test-unit
2021-11-25 13:10:06 +03:00
## Run the integration tests
2022-04-05 18:18:07 +03:00
.PHONY : test -integration
2022-03-03 17:42:08 +03:00
test-integration : build -dev -image
2021-11-25 13:10:06 +03:00
-docker network create traefik-test-network --driver bridge --subnet 172.31.42.0/24
trap 'docker network rm traefik-test-network' EXIT; \
2022-07-13 19:32:08 +03:00
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK_TEST) ) ./script/make.sh generate binary test-integration
2015-09-15 22:38:54 +03:00
2019-03-28 13:42:06 +03:00
## Pull all images for integration tests
2022-04-05 18:18:07 +03:00
.PHONY : pull -images
2019-03-28 13:42:06 +03:00
pull-images :
2022-04-05 18:18:07 +03:00
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 22:38:54 +03:00
2019-04-01 16:30:07 +03:00
## Validate code and docs
2022-04-05 18:18:07 +03:00
.PHONY : validate -files
2022-03-03 17:42:08 +03:00
validate-files : build -dev -image
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK) ) ./script/make.sh generate validate-lint validate-misspell
2019-05-10 18:24:06 +03:00
bash $( CURDIR) /script/validate-shell-script.sh
2019-04-01 16:30:07 +03:00
## Validate code, docs, and vendor
2022-04-05 18:18:07 +03:00
.PHONY : validate
2022-03-03 17:42:08 +03:00
validate : build -dev -image
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK) ) ./script/make.sh generate validate-lint validate-misspell validate-vendor
2019-05-10 18:24:06 +03:00
bash $( CURDIR) /script/validate-shell-script.sh
2015-09-22 12:29:41 +03:00
2019-03-28 13:42:06 +03:00
## Clean up static directory and build a Docker Traefik image
2022-04-05 18:18:07 +03:00
.PHONY : build -image
2022-02-18 17:44:08 +03:00
build-image : clean -webui binary
2015-09-15 22:38:54 +03:00
docker build -t $( TRAEFIK_IMAGE) .
2022-04-05 18:18:07 +03:00
## Build a Docker Traefik image without re-building the webui
.PHONY : build -image -dirty
2019-03-28 13:42:06 +03:00
build-image-dirty : binary
2017-06-13 16:16:08 +03:00
docker build -t $( TRAEFIK_IMAGE) .
2022-03-03 17:42:08 +03:00
## Locally build traefik for linux, then shove it an alpine image, with basic tools.
2022-04-05 18:18:07 +03:00
.PHONY : build -image -debug
2022-03-03 17:42:08 +03:00
build-image-debug : binary -debug
docker build -t $( TRAEFIK_IMAGE) -f debug.Dockerfile .
2019-03-28 13:42:06 +03:00
## Start a shell inside the build env
2022-04-05 18:18:07 +03:00
.PHONY : shell
2019-03-28 13:42:06 +03:00
shell : build -dev -image
$( DOCKER_RUN_TRAEFIK) /bin/bash
## Build documentation site
2022-04-05 18:18:07 +03:00
.PHONY : docs
2019-02-26 16:50:07 +03:00
docs :
make -C ./docs docs
2018-07-12 19:26:03 +03:00
2021-05-11 17:14:10 +03:00
## Serve the documentation site locally
2022-04-05 18:18:07 +03:00
.PHONY : docs -serve
2019-02-26 16:50:07 +03:00
docs-serve :
make -C ./docs docs-serve
2017-10-11 15:46:03 +03:00
2021-03-16 14:08:04 +03:00
## Pull image for doc building
2022-04-05 18:18:07 +03:00
.PHONY : docs -pull -images
2021-03-16 14:08:04 +03:00
docs-pull-images :
make -C ./docs docs-pull-images
2021-09-02 15:40:08 +03:00
## Generate CRD clientset and CRD manifests
2022-04-05 18:18:07 +03:00
.PHONY : generate -crd
2019-03-14 17:56:06 +03:00
generate-crd :
2021-07-23 12:00:07 +03:00
@$( CURDIR) /script/code-gen.sh
2019-03-14 17:56:06 +03:00
2021-05-11 17:14:10 +03:00
## Generate code from dynamic configuration https://github.com/traefik/genconf
2022-04-05 18:18:07 +03:00
.PHONY : generate -genconf
2021-05-11 17:14:10 +03:00
generate-genconf :
go run ./cmd/internal/gen/
2019-03-28 13:42:06 +03:00
## Create packages for the release
2022-04-05 18:18:07 +03:00
.PHONY : release -packages
2022-03-03 17:42:08 +03:00
release-packages : generate -webui build -dev -image
2019-03-14 18:22:04 +03:00
rm -rf dist
2022-10-27 21:40:05 +03:00
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK_NOTTY) ) goreleaser release --skip-publish -p 4 --timeout= "90m"
2022-03-03 17:42:08 +03:00
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK_NOTTY) ) tar cfz dist/traefik-${ VERSION } .src.tar.gz \
2019-03-14 18:22:04 +03:00
--exclude-vcs \
--exclude .idea \
--exclude .travis \
--exclude .semaphoreci \
--exclude .github \
--exclude dist .
2022-03-03 17:42:08 +03:00
$( if $( IN_DOCKER) ,$( DOCKER_RUN_TRAEFIK_NOTTY) ) chown -R $( shell id -u) :$( shell id -g) dist/
2019-03-28 13:42:06 +03:00
## Format the Code
2022-04-05 18:18:07 +03:00
.PHONY : fmt
2019-03-28 13:42:06 +03:00
fmt :
gofmt -s -l -w $( SRCS)
2022-04-05 18:18:07 +03:00
.PHONY : run -dev
2019-03-28 13:42:06 +03:00
run-dev :
go generate
2019-08-11 13:20:53 +03:00
GO111MODULE = on go build ./cmd/traefik
2019-03-28 13:42:06 +03:00
./traefik