ingress-nginx-helm/Makefile

200 lines
5.2 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.
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
BUILDTAGS=
2017-10-06 19:58:36 +00:00
# Use the 0.0 tag for testing, it shouldn't clobber any release builds
TAG?=0.13.0
REGISTRY?=quay.io/kubernetes-ingress-controller
2017-10-06 19:58:36 +00:00
GOOS?=linux
DOCKER?=gcloud docker --
SED_I?=sed -i
GOHOSTOS ?= $(shell go env GOHOSTOS)
2016-11-11 01:45:20 +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
2017-10-06 19:58:36 +00:00
ifndef COMMIT
COMMIT := git-$(shell git rev-parse --short HEAD)
endif
2016-11-11 01:45:20 +00:00
2017-10-06 20:11:04 +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}
2016-11-11 01:45:20 +00:00
2017-11-12 03:40:10 +00:00
ALL_ARCH = amd64 arm arm64 ppc64le s390x
2016-11-11 01:45:20 +00:00
2018-01-02 17:48:30 +00:00
QEMUVERSION=v2.9.1-1
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
BASEIMAGE?=quay.io/kubernetes-ingress-controller/nginx-$(ARCH):0.41
2017-10-06 19:58:36 +00:00
ifeq ($(ARCH),arm)
2017-10-24 03:30:20 +00:00
QEMUARCH=arm
2017-10-06 19:58:36 +00:00
GOARCH=arm
DUMB_ARCH=armhf
endif
ifeq ($(ARCH),arm64)
2017-11-12 03:40:10 +00:00
QEMUARCH=aarch64
2017-10-06 19:58:36 +00:00
endif
ifeq ($(ARCH),ppc64le)
QEMUARCH=ppc64le
GOARCH=ppc64le
DUMB_ARCH=ppc64el
endif
2017-11-12 03:40:10 +00:00
ifeq ($(ARCH),s390x)
QEMUARCH=s390x
endif
2017-10-06 19:58:36 +00:00
TEMP_DIR := $(shell mktemp -d)
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
2017-10-06 19:58:36 +00:00
container: .container-$(ARCH)
2017-11-12 04:51:41 +00:00
.PHONY: .container-$(ARCH)
2017-10-06 19:58:36 +00:00
.container-$(ARCH):
2017-10-17 18:57:58 +00:00
cp -RP ./* $(TEMP_DIR)
$(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
# 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
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: clean
2016-11-11 01:45:20 +00:00
clean:
2017-10-06 19:58:36 +00:00
$(DOCKER) rmi -f $(MULTI_ARCH_IMG):$(TAG) || true
2016-11-11 01:45:20 +00:00
2017-11-23 16:46:23 +00:00
.PHONE: code-generator
code-generator:
go-bindata -nometadata -o internal/file/bindata.go -prefix="rootfs" -pkg=file -ignore=Dockerfile -ignore=".DS_Store" rootfs/...
2017-11-12 04:51:41 +00:00
.PHONY: build
2017-11-23 16:46:23 +00:00
build: clean
2017-10-06 19:58:36 +00:00
CGO_ENABLED=0 GOOS=${GOOS} GOARCH=${GOARCH} go build -a -installsuffix cgo \
2017-10-06 20:11:04 +00:00
-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
2016-11-11 01:45:20 +00:00
.PHONY: verify-all
verify-all:
@./hack/verify-all.sh
2017-10-06 19:58:36 +00:00
2017-11-12 04:51:41 +00:00
.PHONY: test
test:
2017-10-17 22:50:27 +00:00
@go test -v -race -tags "$(BUILDTAGS) cgo" $(shell go list ${PKG}/... | grep -v vendor | grep -v '/test/e2e')
2017-11-12 04:51:41 +00:00
.PHONY: e2e-image
2017-10-17 22:50:27 +00:00
e2e-image: sub-container-amd64
TAG=$(TAG) IMAGE=$(MULTI_ARCH_IMG) docker tag $(IMAGE):$(TAG) $(IMAGE):test
docker images
2017-11-12 04:51:41 +00:00
.PHONY: e2e-test
2017-10-17 22:50:27 +00:00
e2e-test:
2018-04-20 02:14:30 +00:00
@ginkgo build ./test/e2e
@KUBECONFIG=${HOME}/.kube/config ginkgo -randomizeSuites -randomizeAllSpecs -flakeAttempts=2 -p -trace -nodes=2 ./test/e2e/e2e.test
2017-10-06 19:58:36 +00:00
2017-11-12 04:51:41 +00:00
.PHONY: cover
2017-11-23 16:46:23 +00:00
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
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)
2018-03-18 16:31:49 +00:00
.PHONY: luacheck
luacheck:
luacheck -q ./rootfs/etc/nginx/lua/
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-17 22:50:27 +00:00
.PHONY: docker-build
2017-10-06 20:11:04 +00:00
docker-build: all-container
2017-10-17 22:50:27 +00:00
.PHONY: docker-push
docker-push: all-push
2017-10-21 01:24:57 +00:00
.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)