forked from cert-manager/cert-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
174 lines (152 loc) · 5.05 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
# Copyright 2019 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.
# Set DOCKER_REPO to customise the image docker repo, e.g. "quay.io/jetstack"
DOCKER_REPO :=
DOCKER_COMPONENTS ?= "controller,cainjector,acmesolver,webhook"
APP_VERSION := canary
TEST_NAMESPACE ?= cert-manager
HACK_DIR ?= hack
SKIP_GLOBALS := false
GINKGO_SKIP :=
GINKGO_FOCUS :=
## e2e test vars
KUBECTL ?= kubectl
KUBECONFIG ?= $$HOME/.kube/config
# Get a list of all binaries to be built
CMDS := $(shell find ./cmd/ -maxdepth 1 -type d -exec basename {} \; | grep -v cmd)
.PHONY: help build verify deploy push $(CMDS) e2e_test images images_push \
verify_lint verify_unit verify_deps verify_codegen verify_docs verify_chart \
help:
# This Makefile provides common wrappers around Bazel invocations.
#
### Verify targets
#
# verify_lint - run 'lint' targets
# verify_unit - run unit tests
# verify_deps - verifiy vendor/ and Gopkg.lock is up to date
# verify_codegen - verify generated code, including 'static deploy manifests', is up to date
# verify_docs - verify the generated reference docs for API types is up to date
# verify_chart - runs Helm chart linter (e.g. ensuring version has been bumped etc)
#
### Generate targets
#
# generate - regenerate all generated files
#
### Build targets
#
# controller - build a binary of the 'controller'
# injectorcontroller - build a binary of the 'injectorcontroller'
# webhook - build a binary of the 'webhook'
# acmesolver - build a binary of the 'acmesolver'
# e2e_test - builds and runs end-to-end tests.
# NOTE: you probably want to execute ./hack/ci/run-e2e-kind.sh instead of this target
# images - builds docker images for all of the components, saving them in your Docker daemon
# images_push - pushes docker images to the target registry
#
# Image targets can be run with optional args DOCKER_REPO and DOCKER_TAG:
#
# make images DOCKER_REPO=quay.io/yourusername DOCKER_TAG=experimental-tag
#
# Alias targets
###############
build: images
verify: verify_lint verify_codegen verify_deps verify_unit verify_docs
push: docker_push
verify_lint:
bazel test \
//hack:verify-errexit \
//hack:verify-gofmt
verify_unit:
bazel test \
$$(bazel query 'kind("go._*test", "...")' \
| grep -v //vendor/ \
| grep -v //test/e2e \
)
verify_deps:
./hack/verify-vendor.sh
./hack/verify-vendor-licenses.sh
verify_codegen:
bazel test \
//hack:verify-codegen
verify_docs:
bazel test \
//hack:verify-reference-docs
# requires docker
verify_chart:
$(HACK_DIR)/verify-chart-version.sh
# Go targets
############
$(CMDS):
bazel build \
//cmd/$@
e2e_test:
mkdir -p "$$(pwd)/_artifacts"
bazel build //hack/bin:helm //test/e2e:e2e.test
# Run e2e tests
KUBECONFIG=$(KUBECONFIG) \
bazel run //vendor/github.com/onsi/ginkgo/ginkgo -- \
-nodes 10 \
$$(bazel info bazel-genfiles)/test/e2e/e2e.test \
-- \
--helm-binary-path=$$(bazel info bazel-genfiles)/hack/bin/helm \
--repo-root="$$(pwd)" \
--report-dir="$${ARTIFACTS:-./_artifacts}" \
--ginkgo.skip="$(GINKGO_SKIP)" \
--ginkgo.focus="$(GINKGO_FOCUS)" \
--skip-globals=$(SKIP_GLOBALS) \
--kubectl-path="$(KUBECTL)"
# Generate targets
##################
generate:
bazel run //hack:update-bazel
bazel run //hack:update-gofmt
bazel run //hack:update-codegen
bazel run //hack:update-reference-docs
./hack/update-vendor.sh
./hack/update-vendor-licenses.sh
# Docker targets
################
BAZEL_IMAGE_ENV := APP_VERSION=$(APP_VERSION) DOCKER_REPO=$(DOCKER_REPO) DOCKER_TAG=$(APP_VERSION)
images:
bazel run //hack/release -- \
--repo-root "$$(pwd)" \
--images \
--images.export=true \
--images.goarch="amd64" \
--images.export \
--images.components=$(DOCKER_COMPONENTS) \
--app-version="$(APP_VERSION)" \
--docker-repo="$(DOCKER_REPO)"
images_push: images
bazel run //hack/release -- \
--repo-root "$$(pwd)" \
--images \
--publish \
--app-version="$(APP_VERSION)" \
--docker-repo="$(DOCKER_REPO)"
# Deploy to test cluster
########################
deploy:
kubectl apply -f deploy/manifests/00-crds.yaml
kubectl label namespace $(TEST_NAMESPACE) certmanager.k8s.io/disable-validation="true" --overwrite
helm upgrade --install \
--namespace $(TEST_NAMESPACE) \
--set image.tag=canary \
--set image.pullPolicy=Never \
--set cainjector.image.tag=canary \
--set cainjector.pullPolicy=Never \
--set webhook.image.tag=canary \
--set webhook.pullPolicy=Never \
cert-manager \
./deploy/charts/cert-manager