-
Notifications
You must be signed in to change notification settings - Fork 97
/
Makefile
337 lines (272 loc) · 13.4 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
ORG_PATH=github.com/SparebankenVest
PROJECT_NAME := azure-key-vault-to-kubernetes
PACKAGE=$(ORG_PATH)/$(PROJECT_NAME)
COMPONENT_VAR=$(PACKAGE)/pkg/akv2k8s.Component
GIT_VAR=$(PACKAGE)/pkg/akv2k8s.GitCommit
BUILD_DATE_VAR := $(PACKAGE)/pkg/akv2k8s.BuildDate
WEBHOOK_BINARY_NAME=azure-keyvault-secrets-webhook
CONTROLLER_BINARY_NAME=azure-keyvault-controller
KEYVAULT_ENV_BINARY_NAME=azure-keyvault-env
DOCKER_INTERNAL_REG:=akv2k8s.azurecr.io
DOCKER_INTERNAL_URL:=akv2k8s.azurecr.io
DOCKER_INTERNAL_USER:=akv2k8s
DOCKER_INTERNAL_PASSW:=
DOCKER_RELEASE_REG:=spvest
DOCKER_RELEASE_URL:=registry-1.docker.io
DOCKER_RELEASE_USER:=
DOCKER_RELEASE_PASSW:=
DOCKER_CONTROLLER_IMAGE=azure-keyvault-controller
DOCKER_WEBHOOK_IMAGE=azure-keyvault-webhook
DOCKER_AUTH_SERVICE_IMAGE=azure-keyvault-auth-service
DOCKER_VAULTENV_IMAGE=azure-keyvault-env
DOCKER_AKV2K8S_TEST_IMAGE=akv2k8s-env-test
DOCKER_INTERNAL_TAG := $(shell git rev-parse --short HEAD)
DOCKER_RELEASE_TAG := $(shell git describe --tags)
DOCKER_RELEASE_TAG_WEBHOOK := $(shell echo $(DOCKER_RELEASE_TAG) | sed s/"webhook-"/""/g)
DOCKER_RELEASE_TAG_CONTROLLER := $(shell echo $(DOCKER_RELEASE_TAG) | sed s/"controller-"/""/g)
DOCKER_RELEASE_TAG_VAULTENV := $(shell echo $(DOCKER_RELEASE_TAG) | sed s/"vaultenv-"/""/g)
TAG=
GOOS ?= linux
GOARCH ?= amd64
TEST_GOOS ?= linux
BUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
VCS_URL := https://$(PACKAGE)
TOOLS_MOD_DIR := ./tools
TOOLS_DIR := $(abspath ./.tools)
CRDS_DIR := $(abspath ./crds)
ifeq ($(OS),Windows_NT)
GO_BUILD_MODE = default
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S), Linux)
GO_BUILD_MODE = pie
endif
ifeq ($(UNAME_S), Darwin)
GO_BUILD_MODE = default
TEST_GOOS = darwin
endif
endif
##asdf
GO_BUILD_OPTIONS := --tags "netgo osusergo" -ldflags "-s -X $(COMPONENT_VAR)=$(COMPONENT) -X $(GIT_VAR)=$(GIT_TAG) -X $(BUILD_DATE_VAR)=$(BUILD_DATE) -extldflags '-static'"
$(TOOLS_DIR)/golangci-lint: $(TOOLS_MOD_DIR)/go.mod $(TOOLS_MOD_DIR)/go.sum $(TOOLS_MOD_DIR)/tools.go
cd $(TOOLS_MOD_DIR) && \
go build -o $(TOOLS_DIR)/golangci-lint github.com/golangci/golangci-lint/cmd/golangci-lint
$(TOOLS_DIR)/misspell: $(TOOLS_MOD_DIR)/go.mod $(TOOLS_MOD_DIR)/go.sum $(TOOLS_MOD_DIR)/tools.go
cd $(TOOLS_MOD_DIR) && \
go build -o $(TOOLS_DIR)/misspell github.com/client9/misspell/cmd/misspell
$(TOOLS_DIR)/controller-gen: $(TOOLS_MOD_DIR)/go.mod $(TOOLS_MOD_DIR)/go.sum $(TOOLS_MOD_DIR)/tools.go
cd $(TOOLS_MOD_DIR) && \
go build -o $(TOOLS_DIR)/controller-gen sigs.k8s.io/controller-tools/cmd/controller-gen
.PHONY: precommit
precommit: build test lint
.PHONY: mod
mod:
@go mod tidy
.PHONY: check-vendor
check-mod: mod
@git diff --exit-code go.mod go.sum
.PHONY: lint
lint: $(TOOLS_DIR)/golangci-lint $(TOOLS_DIR)/misspell
$(TOOLS_DIR)/golangci-lint run --timeout=5m && \
find . -type f \( -iname \*.go -o -iname \*.md \) | xargs $(TOOLS_DIR)/misspell -w && \
go mod tidy
.PHONY: print-v-webhook
print-v-webhook:
@echo $(DOCKER_RELEASE_TAG_WEBHOOK)
.PHONY: print-v-controller
print-v-controller:
@echo $(DOCKER_RELEASE_TAG_CONTROLLER)
.PHONY: print-v-vaultenv
print-v-vaultenv:
@echo $(DOCKER_RELEASE_TAG_VAULTENV)
.PHONY: tag-all
tag-all: tag-webhook tag-controller tag-vaultenv
.PHONY: tag-crd
tag-crd: check-tag
git tag -a crd-$(TAG) -m "CRD version $(TAG)"
git push --tags
.PHONY: tag-webhook
tag-webhook: check-tag
git tag -a webhook-$(TAG) -m "Webhook version $(TAG)"
git push --tags
.PHONY: tag-controller
tag-controller: check-tag
git tag -a controller-$(TAG) -m "Controller version $(TAG)"
git push --tags
.PHONY: tag-vaultenv
tag-vaultenv: check-tag
git tag -a vaultenv-$(TAG) -m "Vaultenv version $(TAG)"
git push --tags
.PHONY: check-tag
check-tag:
ifndef TAG
$(error TAG is undefined)
endif
.PHONY: fmt
fmt:
@echo "==> Fixing source code with gofmt..."
# This logic should match the search logic in scripts/gofmtcheck.sh
find . -name '*.go' | grep -v /pkg/k8s/ | xargs gofmt -s -w
.PHONY: fmtcheck
fmtcheck:
$(CURDIR)/scripts/gofmtcheck.sh
.PHONY: codegen
codegen:
./hack/update-codegen.sh
.PHONY: crdgen
crdgen: $(TOOLS_DIR)/controller-gen
$(TOOLS_DIR)/controller-gen \
crd:crdVersions=v1 \
paths=./pkg/k8s/apis/azurekeyvault/v1alpha1/... \
paths=./pkg/k8s/apis/azurekeyvault/v1/... \
paths=./pkg/k8s/apis/azurekeyvault/v2alpha1/... \
paths=./pkg/k8s/apis/azurekeyvault/v2beta1/... \
output:crd:artifacts:config=./crds
mv $(CRDS_DIR)/spv.no_azurekeyvaultsecrets.yaml $(CRDS_DIR)/AzureKeyVaultSecret.yaml
.PHONY: test
test: fmtcheck
GOOS=$(TEST_GOOS) \
CGO_ENABLED=0 \
AKV2K8S_CLIENT_ID=$(AKV2K8S_CLIENT_ID) \
AKV2K8S_CLIENT_SECRET=$(AKV2K8S_CLIENT_SECRET) \
AKV2K8S_CLIENT_TENANT_ID=$(AKV2K8S_CLIENT_TENANT_ID) \
AKV2K8S_AZURE_SUBSCRIPTION_ID=$(AKV2K8S_AZURE_SUBSCRIPTION_ID) \
go test -coverprofile=coverage.txt -covermode=atomic -count=1 -v $(shell go list ./... | grep -v /pkg/k8s/)
.PHONY: init-int-test-local
init-int-test-local:
$(eval AKV2K8S_CLIENT_ID ?= $(shell az keyvault secret show --name int-test-azure-client-id --vault-name akv2k8s-test --subscription $(AKV2K8S_AZURE_SUBSCRIPTION_ID) --output tsv --query 'value'))
$(eval AKV2K8S_CLIENT_SECRET ?= $(shell az keyvault secret show --name int-test-azure-client-secret --vault-name akv2k8s-test --subscription $(AKV2K8S_AZURE_SUBSCRIPTION_ID) --output tsv --query 'value'))
$(eval AKV2K8S_CLIENT_TENANT_ID ?= $(shell az keyvault secret show --name int-test-azure-tenant-id --vault-name akv2k8s-test --subscription $(AKV2K8S_AZURE_SUBSCRIPTION_ID) --output tsv --query 'value'))
.PHONY: int-test-local
int-test-local: init-int-test-local test
bin/%:
GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(GO_BUILD_OPTIONS) -o "$(@)" "$(PKG_NAME)"
.PHONY: clean
clean:
rm -rf bin/$(PROJECT_NAME)
.PHONY: clean-webhook
clean-webhook:
rm -rf bin/$(PROJECT_NAME)/$(WEBHOOK_BINARY_NAME)
.PHONY: clean-controller
clean-controller:
rm -rf bin/$(PROJECT_NAME)/$(CONTROLLER_BINARY_NAME)
.PHONY: clean-vaultenv
clean-vaultenv:
rm -rf bin/$(PROJECT_NAME)/$(KEYVAULT_ENV_BINARY_NAME)
# build: build-controller build-webhook build-vaultenv
.PHONY: build
build: clean build-webhook build-controller build-vaultenv
.PHONY: build-webhook
build-webhook: clean-webhook
CGO_ENABLED=0 COMPONENT=webhook PKG_NAME=$(PACKAGE)/cmd/$(WEBHOOK_BINARY_NAME) $(MAKE) bin/$(PROJECT_NAME)/$(WEBHOOK_BINARY_NAME)
.PHONY: build-controller
build-controller: clean-controller
CGO_ENABLED=0 COMPONENT=controller PKG_NAME=$(PACKAGE)/cmd/$(CONTROLLER_BINARY_NAME) $(MAKE) bin/$(PROJECT_NAME)/$(CONTROLLER_BINARY_NAME)
.PHONY: build-vaultenv
build-vaultenv: clean-vaultenv
CGO_ENABLED=0 COMPONENT=vaultenv PKG_NAME=$(PACKAGE)/cmd/$(KEYVAULT_ENV_BINARY_NAME) $(MAKE) bin/$(PROJECT_NAME)/$(KEYVAULT_ENV_BINARY_NAME)
.PHONY: images
images: image-webhook image-controller image-vaultenv
.PHONY: upload-kind-webhook
upload-kind-webhook:
kind load docker-image $(DOCKER_INTERNAL_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_INTERNAL_TAG)
.PHONY: upload-kind-controller
upload-kind-controller:
kind load docker-image $(DOCKER_INTERNAL_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_INTERNAL_TAG)
.PHONY: upload-kind-vaultenv
upload-kind-vaultenv:
kind load docker-image $(DOCKER_INTERNAL_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_INTERNAL_TAG)
login-to-docker:
@docker login $(DOCKER_INTERNAL_URL) --username $(DOCKER_INTERNAL_USER) --password $(DOCKER_INTERNAL_PASSW)
setup-docker-buildx:
docker buildx create --name akv2k8s --use
.PHONY: image-webhook
image-webhook:
docker buildx build \
--progress=plain \
--target webhook \
--platform linux/amd64,linux/arm64 \
--build-arg BUILD_SUB_TARGET="-webhook" \
--build-arg PACKAGE=$(PACKAGE) \
--build-arg VCS_REF=$(DOCKER_INTERNAL_TAG) \
--build-arg BUILD_DATE=$(BUILD_DATE) \
--build-arg VCS_URL=$(VCS_URL) \
--cache-from=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_WEBHOOK_IMAGE):cache \
--cache-to=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_WEBHOOK_IMAGE):cache,mode=max \
--push \
-t $(DOCKER_INTERNAL_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_INTERNAL_TAG) .
.PHONY: image-controller
image-controller:
docker buildx build \
--progress=plain \
--target controller \
--platform linux/amd64,linux/arm64 \
--build-arg BUILD_SUB_TARGET="-controller" \
--build-arg PACKAGE=$(PACKAGE) \
--build-arg VCS_REF=$(DOCKER_INTERNAL_TAG) \
--build-arg BUILD_DATE=$(BUILD_DATE) \
--build-arg VCS_URL=$(VCS_URL) \
--cache-from=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_CONTROLLER_IMAGE):cache \
--cache-to=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_CONTROLLER_IMAGE):cache,mode=max \
--push \
-t $(DOCKER_INTERNAL_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_INTERNAL_TAG) .
.PHONY: image-vaultenv
image-vaultenv:
docker buildx build \
--progress=plain \
--target vaultenv \
--platform linux/amd64,linux/arm64 \
--build-arg BUILD_SUB_TARGET="-vaultenv" \
--build-arg PACKAGE=$(PACKAGE) \
--build-arg VCS_REF=$(DOCKER_INTERNAL_TAG) \
--build-arg BUILD_DATE=$(BUILD_DATE) \
--build-arg VCS_URL=$(VCS_URL) \
--cache-from=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_VAULTENV_IMAGE):cache \
--cache-to=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_VAULTENV_IMAGE):cache,mode=max \
--push \
-t $(DOCKER_INTERNAL_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_INTERNAL_TAG) .
.PHONY: image-akv2k8s-env-test
image-akv2k8s-env-test:
docker buildx build \
--progress=plain \
--platform linux/amd64,linux/arm64 \
-t $(DOCKER_INTERNAL_REG)/$(DOCKER_AKV2K8S_TEST_IMAGE) \
--cache-from=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_AKV2K8S_TEST_IMAGE):cache \
--cache-to=type=registry,ref=$(DOCKER_INTERNAL_REG)/$(DOCKER_AKV2K8S_TEST_IMAGE):cache,mode=max \
--push \
-f images/akv2k8s-test/Dockerfile .
.PHONY: push-controller
.PHONY: pull-all
pull-all: pull-webhook pull-controller pull-vaultenv
.PHONY: pull-webhook
pull-webhook:
docker pull $(DOCKER_INTERNAL_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_INTERNAL_TAG)
.PHONY: pull-controller
pull-controller:
docker pull $(DOCKER_INTERNAL_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_INTERNAL_TAG)
.PHONY: pull-vaultenv
pull-vaultenv:
docker pull $(DOCKER_INTERNAL_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_INTERNAL_TAG)
.PHONY: release
release: release-controller release-webhook release-vaultenv
.PHONY: release-controller
release-controller:
@docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest registry login $(DOCKER_INTERNAL_URL) -u $(DOCKER_INTERNAL_USER) -p $(DOCKER_INTERNAL_PASSW)
@docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest registry login $(DOCKER_RELEASE_URL) -u $(DOCKER_RELEASE_USER) -p $(DOCKER_RELEASE_PASSW)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_INTERNAL_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_INTERNAL_TAG)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_RELEASE_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_RELEASE_TAG_CONTROLLER)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_RELEASE_REG)/$(DOCKER_CONTROLLER_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_CONTROLLER_IMAGE):latest
.PHONY: release-webhook
release-webhook:
@docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest registry login $(DOCKER_INTERNAL_URL) -u $(DOCKER_INTERNAL_USER) -p $(DOCKER_INTERNAL_PASSW)
@docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest registry login $(DOCKER_RELEASE_URL) -u $(DOCKER_RELEASE_USER) -p $(DOCKER_RELEASE_PASSW)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_INTERNAL_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_INTERNAL_TAG)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_RELEASE_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_RELEASE_TAG_WEBHOOK)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_RELEASE_REG)/$(DOCKER_WEBHOOK_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_WEBHOOK_IMAGE):latest
.PHONY: release-vaultenv
release-vaultenv:
@docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest registry login $(DOCKER_INTERNAL_URL) -u $(DOCKER_INTERNAL_USER) -p $(DOCKER_INTERNAL_PASSW)
@docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest registry login $(DOCKER_RELEASE_URL) -u $(DOCKER_RELEASE_USER) -p $(DOCKER_RELEASE_PASSW)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_INTERNAL_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_INTERNAL_TAG)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_RELEASE_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_RELEASE_TAG_VAULTENV)
docker run --rm --net host -v regctl-conf:/home/appuser/.regctl/ regclient/regctl:latest image copy $(DOCKER_RELEASE_REG)/$(DOCKER_VAULTENV_IMAGE):$(DOCKER_INTERNAL_TAG) $(DOCKER_RELEASE_REG)/$(DOCKER_VAULTENV_IMAGE):latest