-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
196 lines (161 loc) · 5.91 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
SHELL ?= /bin/bash
.DEFAULT_GOAL := push
################################################################################
# Version details #
################################################################################
# This will reliably return the short SHA1 of HEAD or, if the working directory
# is dirty, will return that + "-dirty"
GIT_VERSION = $(shell git describe --always --abbrev=7 --dirty --match=NeVeRmAtCh)
################################################################################
# Containerized development environment-- or lack thereof #
################################################################################
ifneq ($(SKIP_DOCKER),true)
PROJECT_ROOT := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
GO_DEV_IMAGE := brigadecore/go-tools:v0.8.0
GO_DOCKER_CMD := docker run \
-it \
--rm \
-e SKIP_DOCKER=true \
-e GITHUB_TOKEN=$${GITHUB_TOKEN} \
-e GOCACHE=/workspaces/brigade-dockerhub-gateway/.gocache \
-v $(PROJECT_ROOT):/workspaces/brigade-dockerhub-gateway \
-w /workspaces/brigade-dockerhub-gateway \
$(GO_DEV_IMAGE)
HELM_IMAGE := brigadecore/helm-tools:v0.4.0
HELM_DOCKER_CMD := docker run \
-it \
--rm \
-e SKIP_DOCKER=true \
-e HELM_PASSWORD=$${HELM_PASSWORD} \
-v $(PROJECT_ROOT):/workspaces/brigade-dockerhub-gateway \
-w /workspaces/brigade-dockerhub-gateway \
$(HELM_IMAGE)
endif
################################################################################
# Binaries and Docker images we build and publish #
################################################################################
ifdef DOCKER_REGISTRY
DOCKER_REGISTRY := $(DOCKER_REGISTRY)/
endif
ifdef DOCKER_ORG
DOCKER_ORG := $(DOCKER_ORG)/
endif
DOCKER_IMAGE_NAME := $(DOCKER_REGISTRY)$(DOCKER_ORG)brigade-dockerhub-gateway
ifdef HELM_REGISTRY
HELM_REGISTRY := $(HELM_REGISTRY)/
endif
ifdef HELM_ORG
HELM_ORG := $(HELM_ORG)/
endif
HELM_CHART_NAME := $(HELM_REGISTRY)$(HELM_ORG)brigade-dockerhub-gateway
ifdef VERSION
MUTABLE_DOCKER_TAG := latest
else
VERSION := $(GIT_VERSION)
MUTABLE_DOCKER_TAG := edge
endif
IMMUTABLE_DOCKER_TAG := $(VERSION)
################################################################################
# Tests #
################################################################################
.PHONY: lint
lint:
$(GO_DOCKER_CMD) sh -c ' \
golangci-lint run --config golangci.yaml \
'
.PHONY: test-unit
test-unit:
$(GO_DOCKER_CMD) sh -c ' \
go test \
-v \
-timeout=60s \
-race \
-coverprofile=coverage.txt \
-covermode=atomic \
./... \
'
.PHONY: lint-chart
lint-chart:
$(HELM_DOCKER_CMD) sh -c ' \
cd charts/brigade-dockerhub-gateway && \
helm dep up && \
helm lint . \
'
################################################################################
# Upload Code Coverage Reports #
################################################################################
.PHONY: upload-code-coverage
upload-code-coverage:
$(GO_DOCKER_CMD) codecov
################################################################################
# Image security #
################################################################################
.PHONY: scan
scan:
grype $(DOCKER_IMAGE_NAME):$(IMMUTABLE_DOCKER_TAG) -f medium
.PHONY: generate-sbom
generate-sbom:
syft $(DOCKER_IMAGE_NAME):$(IMMUTABLE_DOCKER_TAG) \
-o spdx-json \
--file ./artifacts/brigade-dockerhub-gateway-$(VERSION)-SBOM.json
.PHONY: publish-sbom
publish-sbom: generate-sbom
ghr \
-u $(GITHUB_ORG) \
-r $(GITHUB_REPO) \
-c $$(git rev-parse HEAD) \
-t $${GITHUB_TOKEN} \
-n ${VERSION} \
${VERSION} ./artifacts/brigade-dockerhub-gateway-$(VERSION)-SBOM.json
################################################################################
# Publish #
################################################################################
.PHONY: publish
publish: push publish-chart
.PHONY: push
push:
docker buildx build \
-t $(DOCKER_IMAGE_NAME):$(IMMUTABLE_DOCKER_TAG) \
-t $(DOCKER_IMAGE_NAME):$(MUTABLE_DOCKER_TAG) \
--build-arg VERSION=$(VERSION) \
--build-arg COMMIT=$(GIT_VERSION) \
--platform linux/amd64,linux/arm64 \
--push \
.
.PHONY: sign
sign:
docker pull $(DOCKER_IMAGE_NAME):$(IMMUTABLE_DOCKER_TAG)
docker pull $(DOCKER_IMAGE_NAME):$(MUTABLE_DOCKER_TAG)
docker trust sign $(DOCKER_IMAGE_NAME):$(IMMUTABLE_DOCKER_TAG)
docker trust sign $(DOCKER_IMAGE_NAME):$(MUTABLE_DOCKER_TAG)
docker trust inspect --pretty $(DOCKER_IMAGE_NAME):$(IMMUTABLE_DOCKER_TAG)
docker trust inspect --pretty $(DOCKER_IMAGE_NAME):$(MUTABLE_DOCKER_TAG)
.PHONY: publish-chart
publish-chart:
$(HELM_DOCKER_CMD) sh -c ' \
helm registry login $(HELM_REGISTRY) -u $(HELM_USERNAME) -p $${HELM_PASSWORD} && \
cd charts/brigade-dockerhub-gateway && \
helm dep up && \
helm package . --version $(VERSION) --app-version $(VERSION) && \
helm push brigade-dockerhub-gateway-$(VERSION).tgz oci://$(HELM_REGISTRY)$(HELM_ORG) \
'
################################################################################
# Targets to facilitate hacking on this gateway #
################################################################################
.PHONY: hack-kind-up
hack-kind-up:
ctlptl apply -f hack/kind/cluster.yaml
HELM_EXPERIMENTAL_OCI=1 helm upgrade brigade \
oci://ghcr.io/brigadecore/brigade \
--version v2.4.0 \
--install \
--create-namespace \
--namespace brigade \
--set apiserver.rootUser.password='F00Bar!!!' \
--set apiserver.service.type=NodePort \
--set apiserver.service.nodePort=31600 \
--wait \
--timeout 300s
.PHONY: hack-kind-down
hack-kind-down:
ctlptl delete -f hack/kind/cluster.yaml