forked from akuity/kargo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
248 lines (215 loc) · 8.38 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
SHELL ?= /bin/bash
ARGO_CD_CHART_VERSION := 5.46.6
BUF_LINT_ERROR_FORMAT ?= text
GO_LINT_ERROR_FORMAT ?= colored-line-number
CERT_MANAGER_CHART_VERSION := 1.11.5
VERSION_PACKAGE := github.com/akuity/kargo/internal/version
IMAGE_REPO ?= kargo
IMAGE_TAG ?= dev
IMAGE_PUSH ?= false
IMAGE_PLATFORMS =
DOCKER_BUILD_OPTS =
# Intelligently choose to build a multi-arch image if the intent is to push to a
# container registry (IMAGE_PUSH=true). If not pushing, build an single-arch
# image for the local architecture. Honor IMAGE_PLATFORMS above all.
ifeq ($(strip $(IMAGE_PUSH)),true)
override DOCKER_BUILD_OPTS += --push
ifeq ($(strip $(IMAGE_PLATFORMS)),)
override DOCKER_BUILD_OPTS += --platform=linux/amd64,linux/arm64
endif
endif
ifneq ($(strip $(IMAGE_PLATFORMS)),)
override DOCKER_BUILD_OPTS += --platform=$(IMAGE_PLATFORMS)
endif
# These enable cross-compiling the CLI binary for any desired OS and CPU
# architecture. Even if building inside a container, they will default to the
# developer's native OS and CPU architecture.
#
# Note: We use `uname` instead of `go env` because if a developer intends to
# build inside a container, it's possible they may not have Go installed on the
# host machine.
#
# This only works on Linux and macOS. Windows users are advised to undertake
# Kargo development activities inside WSL2.
GOOS ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')
GOARCH ?= $(shell uname -m)
################################################################################
# Tests #
# #
# These targets are used by our continuous integration processes. Use these #
# directly at your own risk -- they assume required tools (and correct #
# versions thereof) to be present on your system. #
# #
# If you prefer to execute these tasks in a container that is pre-loaded with #
# required tools, refer to the hacking section toward the bottom of this file. #
################################################################################
.PHONY: lint
lint: lint-go lint-proto lint-charts
.PHONY: lint-go
lint-go:
golangci-lint run --out-format=$(GO_LINT_ERROR_FORMAT)
.PHONY: lint-proto
lint-proto:
buf lint api --error-format=$(BUF_LINT_ERROR_FORMAT)
.PHONY: lint-charts
lint-charts:
cd charts/kargo && \
helm dep up && \
helm lint .
.PHONY: test-unit
test-unit:
go test \
-v \
-timeout=300s \
-race \
-coverprofile=coverage.txt \
-covermode=atomic \
./...
################################################################################
# Builds #
# #
# These targets are used by our continuous integration and release processes. #
# Use these directly at your own risk -- they assume required tools #
# correct versions thereof) to be present on your system. #
# #
# If you prefer to execute these tasks in a container that is pre-loaded with #
# required tools, refer to the hacking section toward the bottom of this file. #
################################################################################
.PHONY: build-cli
build-cli:
CGO_ENABLED=0 go build \
-ldflags "-w -X $(VERSION_PACKAGE).version=$(VERSION) -X $(VERSION_PACKAGE).buildDate=$$(date -u +'%Y-%m-%dT%H:%M:%SZ') -X $(VERSION_PACKAGE).gitCommit=$(GIT_COMMIT) -X $(VERSION_PACKAGE).gitTreeState=$(GIT_TREE_STATE)" \
-o bin/kargo-$(GOOS)-$(GOARCH)$(shell [ ${GOOS} = windows ] && echo .exe) \
./cmd/cli
################################################################################
# Code generation: To be run after modifications to API types #
################################################################################
.PHONY: codegen
codegen:
buf generate api
controller-gen \
rbac:roleName=manager-role \
crd \
webhook \
paths=./... \
output:crd:artifacts:config=charts/kargo/crds
controller-gen \
object:headerFile=hack/boilerplate.go.txt \
paths=./...
pnpm --dir=ui install --dev
pnpm --dir=ui run generate:schema
npm install -g @bitnami/readme-generator-for-helm
bash hack/helm-docs/helm-docs.sh
################################################################################
# Hack: Targets to help you hack #
# #
# These targets minimize required developer setup by executing in a container #
# that is pre-loaded with required tools. #
################################################################################
DOCKER_CMD := docker run \
-it \
--rm \
-v gomodcache:/go/pkg/mod \
-v $(dir $(realpath $(firstword $(MAKEFILE_LIST)))):/workspaces/kargo \
-w /workspaces/kargo \
kargo:dev-tools
.PHONY: hack-build-dev-tools
hack-build-dev-tools:
docker build -f Dockerfile.dev -t kargo:dev-tools .
.PHONY: hack-lint
hack-lint: hack-build-dev-tools
$(DOCKER_CMD) make lint
.PHONY: hack-lint-go
hack-lint-go: hack-build-dev-tools
$(DOCKER_CMD) make lint-go
.PHONY: hack-lint-proto
hack-lint-proto: hack-build-dev-tools
$(DOCKER_CMD) make lint-proto
.PHONY: hack-lint-charts
hack-lint-charts: hack-build-dev-tools
$(DOCKER_CMD) make lint-charts
.PHONY: hack-test-unit
hack-test-unit: hack-build-dev-tools
$(DOCKER_CMD) make test-unit
.PHONY: hack-codegen
hack-codegen: hack-build-dev-tools
$(DOCKER_CMD) make codegen
# Build an image. Example usages:
#
# Build image for local architecture (kargo:dev)
# make hack-build
#
# Push a multi-arch image to a personal repository (myusername/kargo:latest)
# make hack-build IMAGE_REPO=myusername/kargo IMAGE_PUSH=true IMAGE_TAG=latest
#
# Build a linux/amd64 image with a docker build option to not re-use docker build cache
# make hack-build IMAGE_PLATFORMS=linux/amd64 DOCKER_BUILD_OPTS=--no-cache
.PHONY: hack-build
hack-build:
docker buildx build \
$(DOCKER_BUILD_OPTS) \
--build-arg GIT_COMMIT=$(shell git rev-parse HEAD) \
--build-arg GIT_TREE_STATE=$(shell if [ -z "`git status --porcelain`" ]; then echo "clean" ; else echo "dirty"; fi) \
--tag $(IMAGE_REPO):$(IMAGE_TAG) \
.
.PHONY: hack-build-cli
hack-build-cli: hack-build-dev-tools
@# Local values of GOOS and GOARCH get passed into the container.
$(DOCKER_CMD) sh -c 'GOOS=$(GOOS) GOARCH=$(GOARCH) make build-cli'
.PHONY: hack-kind-up
hack-kind-up:
ctlptl apply -f hack/kind/cluster.yaml
make hack-install-cert-manager
make hack-install-argocd
.PHONY: hack-k3d-up
hack-k3d-up:
ctlptl apply -f hack/k3d/cluster.yaml
make hack-install-cert-manager
make hack-install-argocd
.PHONY: hack-kind-down
hack-kind-down:
ctlptl delete -f hack/kind/cluster.yaml
.PHONY: hack-k3d-down
hack-k3d-down:
ctlptl delete -f hack/k3d/cluster.yaml
.PHONY: hack-install-cert-manager
hack-install-cert-manager:
helm upgrade cert-manager cert-manager \
--repo https://charts.jetstack.io \
--version $(CERT_MANAGER_CHART_VERSION) \
--install \
--create-namespace \
--namespace cert-manager \
--set installCRDs=true \
--wait
.PHONY: hack-install-argocd
hack-install-argocd:
helm upgrade argocd argo-cd \
--repo https://argoproj.github.io/argo-helm \
--version $(ARGO_CD_CHART_VERSION) \
--install \
--create-namespace \
--namespace argocd \
--set 'configs.secret.argocdServerAdminPassword=$$2a$$10$$5vm8wXaSdbuff0m9l21JdevzXBzJFPCi8sy6OOnpZMAG.fOXL7jvO' \
--set 'configs.params."application\.namespaces"=*' \
--set server.service.type=NodePort \
--set server.service.nodePortHttp=30080 \
--wait
.PHONY: hack-add-rollouts
hack-add-rollouts:
helm upgrade argocd argo-cd \
--repo https://argoproj.github.io/argo-helm \
--version $(ARGO_CD_CHART_VERSION) \
--namespace argocd \
--reuse-values \
--set server.extensions.enabled=true \
--set server.extensions.contents[0].name=argo-rollouts \
--set server.extensions.contents[0].url=https://github.com/argoproj-labs/rollout-extension/releases/download/v0.2.0/extension.tar \
--wait
helm upgrade argo-rollouts argo-rollouts \
--repo https://argoproj.github.io/argo-helm \
--version 2.20.0 \
--install \
--create-namespace \
--namespace argo-rollouts \
--wait