forked from cert-manager/cert-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
178 lines (154 loc) · 5.44 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# Copyright 2018 The Jetstack cert-manager contributors.
#
# 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.
PACKAGE_NAME := github.com/jetstack/cert-manager
REGISTRY := quay.io/jetstack
APP_NAME := cert-manager
IMAGE_TAGS := canary
GOPATH ?= $$HOME/go
HACK_DIR ?= hack
BUILD_TAG := build
# Domain name to use in e2e tests. This is important for ACME HTTP01 e2e tests,
# which require a domain that resolves to the ingress controller to be used for
# e2e tests.
E2E_NGINX_CERTIFICATE_DOMAIN=
KUBECONFIG ?= $$HOME/.kube/config
PEBBLE_IMAGE_REPO=quay.io/munnerz/pebble
# AppVersion is set as the AppVersion to be compiled into the controller binary.
# It's used as the default version of the 'acmesolver' image to use for ACME
# challenge requests, and any other future provider that requires additional
# image dependencies will use this same tag.
ifeq ($(APP_VERSION),)
APP_VERSION := canary
endif
# Get a list of all binaries to be built
CMDS := $(shell find ./cmd/ -maxdepth 1 -type d -exec basename {} \; | grep -v cmd)
# Path to dockerfiles directory
DOCKERFILES := $(HACK_DIR)/build/dockerfiles
# A list of all types.go files in pkg/apis
TYPES_FILES := $(shell find pkg/apis -name types.go)
# docker_build_controller, docker_build_apiserver etc
DOCKER_BUILD_TARGETS := $(addprefix docker_build_, $(CMDS))
# docker_push_controller, docker_push_apiserver etc
DOCKER_PUSH_TARGETS := $(addprefix docker_push_, $(CMDS))
# Go build flags
GOOS := linux
GOARCH := amd64
GIT_COMMIT := $(shell git rev-parse HEAD)
GOLDFLAGS := -ldflags "-X $(PACKAGE_NAME)/pkg/util.AppGitState=${GIT_STATE} -X $(PACKAGE_NAME)/pkg/util.AppGitCommit=${GIT_COMMIT} -X $(PACKAGE_NAME)/pkg/util.AppVersion=${APP_VERSION}"
.PHONY: verify build docker_build push generate generate_verify deploy_verify \
$(CMDS) go_test go_fmt e2e_test go_verify hack_verify hack_verify_pr \
$(DOCKER_BUILD_TARGETS) $(DOCKER_PUSH_TARGETS)
# Docker build flags
DOCKER_BUILD_FLAGS := --build-arg VCS_REF=$(GIT_COMMIT) $(DOCKER_BUILD_FLAGS)
# Alias targets
###############
build: $(CMDS) docker_build
verify: verify_lint verify_codegen verify_deps verify_unit
verify_lint: hack_verify go_fmt
verify_unit: go_test
verify_deps: dep_verify
verify_codegen: generate_verify deploy_verify
# requires docker
verify_docs:
$(HACK_DIR)/verify-reference-docs.sh
# requires docker
verify_chart:
$(HACK_DIR)/verify-chart-version.sh
docker_build: $(DOCKER_BUILD_TARGETS)
docker_push: $(DOCKER_PUSH_TARGETS)
push: build docker_push
# Code generation
#################
# This target runs all required generators against our API types.
generate: $(TYPES_FILES)
$(HACK_DIR)/update-codegen.sh
generate_verify:
$(HACK_DIR)/verify-codegen.sh
# Hack targets
##############
hack_verify:
@echo Running boilerplate header checker
$(HACK_DIR)/verify_boilerplate.py
@echo Running href checker
$(HACK_DIR)/verify-links.sh
@echo Running errexit checker
$(HACK_DIR)/verify-errexit.sh
hack_verify_pr:
@echo Running helm chart version checker
$(HACK_DIR)/verify-chart-version.sh
@echo Running reference docs checker
IMAGE=eu.gcr.io/jetstack-build-infra/gen-apidocs-img $(HACK_DIR)/verify-reference-docs.sh
deploy_verify:
@echo Running deploy-gen
$(HACK_DIR)/verify-deploy-gen.sh
# Go targets
#################
dep_verify:
@echo Running dep
$(HACK_DIR)/verify-deps.sh
go_verify: go_fmt go_test
$(CMDS):
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build \
-a -tags netgo \
-o $(DOCKERFILES)/${APP_NAME}-$@_$(GOOS)_$(GOARCH) \
$(GOLDFLAGS) \
./cmd/$@
go_test:
go test -v \
-race \
$$(go list ./... | \
grep -v '/vendor/' | \
grep -v '/test/e2e' | \
grep -v '/pkg/client' | \
grep -v '/third_party' | \
grep -v '/docs/generated' \
)
go_fmt:
@set -e; \
GO_FMT=$$(git ls-files *.go | grep -v 'vendor/' | xargs gofmt -d); \
if [ -n "$${GO_FMT}" ] ; then \
echo "Please run go fmt"; \
echo "$$GO_FMT"; \
exit 1; \
fi
e2e_test:
# Build the e2e tests
go test -o e2e-tests -c ./test/e2e
mkdir -p "$$(pwd)/_artifacts"
# TODO: make these paths configurable
# Run e2e tests
KUBECONFIG=$(KUBECONFIG) CERTMANAGERCONFIG=$(KUBECONFIG) \
./e2e-tests \
-acme-nginx-certificate-domain=$(E2E_NGINX_CERTIFICATE_DOMAIN) \
-cloudflare-email=$${CLOUDFLARE_E2E_EMAIL} \
-cloudflare-api-key=$${CLOUDFLARE_E2E_API_TOKEN} \
-acme-cloudflare-domain=$${CLOUDFLARE_E2E_DOMAIN} \
-pebble-image-repo=$(PEBBLE_IMAGE_REPO) \
-report-dir="$${ARTIFACTS:-./_artifacts}"
# Docker targets
################
$(DOCKER_BUILD_TARGETS):
$(eval DOCKER_BUILD_CMD := $(subst docker_build_,,$@))
docker build \
$(DOCKER_BUILD_FLAGS) \
-t $(REGISTRY)/$(APP_NAME)-$(DOCKER_BUILD_CMD):$(BUILD_TAG) \
-f $(DOCKERFILES)/$(DOCKER_BUILD_CMD)/Dockerfile \
$(DOCKERFILES)
$(DOCKER_PUSH_TARGETS):
$(eval DOCKER_PUSH_CMD := $(subst docker_push_,,$@))
set -e; \
for tag in $(IMAGE_TAGS); do \
docker tag $(REGISTRY)/$(APP_NAME)-$(DOCKER_PUSH_CMD):$(BUILD_TAG) $(REGISTRY)/$(APP_NAME)-$(DOCKER_PUSH_CMD):$${tag} ; \
docker push $(REGISTRY)/$(APP_NAME)-$(DOCKER_PUSH_CMD):$${tag}; \
done