-
Notifications
You must be signed in to change notification settings - Fork 40
/
Makefile
320 lines (259 loc) · 9.79 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
FIPS_ENABLED=true
include boilerplate/generated-includes.mk
# Additional Deployment Image
define ADDITIONAL_IMAGE_SPECS
build/Dockerfile.webhook $(SUPPLEMENTARY_IMAGE_URI)
endef
# Operator versioning for Boilerplate
VERSION_MAJOR=1
VERSION_MINOR=15
SHELL=/bin/bash
.SHELLFLAGS=-euo pipefail -c
CONTAINER_ENGINE ?= $(shell command -v podman 2>/dev/null || command -v docker 2>/dev/null)
# Build Flags
export CGO_ENABLED:=0
SHORT_SHA=$(shell git rev-parse --short HEAD)
VERSION?=${SHORT_SHA}
MODULE:=github.com/openshift/addon-operator
LD_FLAGS=-X $(MODULE)/internal/version.Version=$(VERSION) \
-X $(MODULE)/internal/version.Branch=$(BRANCH) \
-X $(MODULE)/internal/version.Commit=$(SHORT_SHA) \
-X $(MODULE)/internal/version.BuildDate=$(BUILD_DATE)
UNAME_OS:=$(shell uname -s)
UNAME_OS_LOWER:=$(shell uname -s | awk '{ print tolower($$0); }') # UNAME_OS but in lower case
UNAME_ARCH:=$(shell uname -m)
# Operator package metadata
PKG_BASE_IMG ?= addon-operator-package
PKG_IMG_REGISTRY ?= quay.io
PKG_IMG_ORG ?= app-sre
PKG_IMG ?= $(PKG_IMG_REGISTRY)/$(PKG_IMG_ORG)/${PKG_BASE_IMG}
PKG_IMAGETAG ?= ${SHORT_SHA}
PKO_CLI_IMAGE = quay.io/app-sre/package-operator-cli:d2e3523
GOVULNCHECK_VERSION=v1.0.1
# PATH/Bin
PROJECT_DIR:=$(shell pwd)
DEPENDENCIES:=.deps
DEPENDENCY_BIN:=$(abspath $(DEPENDENCIES)/bin)
DEPENDENCY_VERSIONS:=$(abspath $(DEPENDENCIES)/$(UNAME_OS)/$(UNAME_ARCH)/versions)
export PATH:=$(DEPENDENCY_BIN):$(PATH)
# Config
KIND_KUBECONFIG_DIR:=.cache/dev-env
KIND_KUBECONFIG:=$(KIND_KUBECONFIG_DIR)/kubeconfig.yaml
export KUBECONFIG?=$(abspath $(KIND_KUBECONFIG))
export GOLANGCI_LINT_CACHE=$(abspath .cache/golangci-lint)
export SKIP_TEARDOWN?=
KIND_CLUSTER_NAME:="addon-operator" # name of the kind cluster for local development.
ENABLE_API_MOCK?="false"
ENABLE_WEBHOOK?="false"
ENABLE_MONITORING?="false"
ENABLE_REMOTE_STORAGE_MOCK="true"
WEBHOOK_PORT?=8080
# Container
IMAGE_ORG?=quay.io/app-sre
ADDON_OPERATOR_MANAGER_IMAGE?=$(IMAGE_ORG)/addon-operator-manager:$(VERSION)
ADDON_OPERATOR_WEBHOOK_IMAGE?=$(IMAGE_ORG)/addon-operator-webhook:$(VERSION)
API_MOCK_IM?=$(IMAGE_ORG)/api-mock:$(VERSION)
export API_MOCK_IMAGE?=$(API_MOCK_IM)
# COLORS
GREEN := $(shell tput -Txterm setaf 2)
YELLOW := $(shell tput -Txterm setaf 3)
RESET := $(shell tput -Txterm sgr0)
OUTPUT=$(shell grep -e 'webhookdefinitions' $(PROJECT_DIR)/bundle/manifests/addon-operator.clusterserviceversion.yaml)
# ---------
##@ General
# ---------
# Default build target - must be first!
all:
./mage build:all
## Display this help.
help:
@echo 'Usage:'
@echo ' ${YELLOW}make${RESET} ${GREEN}<target>${RESET}'
@awk \
'/^[^[:space:]]+:/ { \
helpMessage = match(lastLine, /^## (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
printf " ${GREEN}%-30s${RESET}%s\n", helpCommand, helpMessage; \
} \
} \
/^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
## Prints version as used by build commands.
version:
@echo $(VERSION)
.PHONY: version
## Cleans cached binaries, dependencies and container image tars.
clean-setup: delete-kind-cluster
@rm -rf bin .cache
.PHONY: clean-setup
# ---------
##@ Compile
# ---------
# empty force target to ensure a target always executes.
FORCE:
# ----------------------------
# Dependencies (project local)
# ----------------------------
kind:
./mage dependency:kind
yq:
./mage dependency:yq
opm:
./mage dependency:opm
helm:
./mage dependency:helm
operatorSDK:
./mage dependency:OperatorSDK
## Run go mod tidy in all go modules
tidy:
@go mod tidy
# -----------
##@ Testing
# -----------
## Runs unittests.
go-test:
@echo "running unit tests..."
CGO_ENABLED=1 go test $(TESTOPTS) ./internal/... ./cmd/... ./pkg/... ./controllers/...
.PHONY: go-test
## Runs the Integration testsuite against the current $KUBECONFIG cluster
test-integration: export ENABLE_WEBHOOK=true
test-integration: export ENABLE_API_MOCK=true
test-integration: export EXPERIMENTAL_FEATURES=true
test-integration:
@echo "running integration tests..."
./mage test:integration
.PHONY: test-integration
# legacy alias for CI/CD
test-e2e:
./mage test:integrationci
.PHONY: test-e2e
# Target to run PKO integration tests
test-pko-e2e:
./mage test:integrationPKO
.PHONY: test-pko-e2e
## Runs the Integration testsuite against the current $KUBECONFIG cluster. Skips operator setup and teardown.
test-integration-short:
@echo "running [short] integration tests..."
@go test -v -count=1 -short ./integration/...
./mage test:integrationshort
## Setup a local dev environment and execute the full integration testsuite against it.
test-integration-local:
./mage dev:integration
.PHONY: test-integration-local
patch-csv-webhook:
@(if [[ -z "${OUTPUT}" ]]; then echo "Patching CSV with webhook definition at $(PROJECT_DIR)/bundle/manifests/addon-operator.clusterserviceversion.yaml"; ./mage test:PatchAddonOperatorCSVWebhook; fi)
.PHONY: patch-csv-webhook
# -------------------------
##@ Development Environment
# -------------------------
## Installs all project dependencies into $(PWD)/.deps/bin
dependencies:
./mage dependency:all
.PHONY: dependencies
## Run cmd/addon-operator-manager against $KUBECONFIG.
run-addon-operator-manager:
## Generates the OLM bundle
generate-bundle:
./mage dependency:operatorSDK
$(PROJECT_DIR)/$(DEPENDENCIES)/bin/operator-sdk generate bundle --input-dir $(PROJECT_DIR)/deploy --version 1.0.0 --overwrite
@echo "Patching CSV with webhook definition at $(PROJECT_DIR)/bundle/manifests/addon-operator.clusterserviceversion.yaml"
./mage test:PatchAddonOperatorCSVBundle
.PHONY: generate-bundle
## Run cmd/% against $KUBECONFIG.
run-%: generate
go run -ldflags "-w $(LD_FLAGS)" . \
-pprof-addr="127.0.0.1:8065" \
-metrics-addr="0"
# make sure that we install our components into the kind cluster and disregard normal $KUBECONFIG
dev-setup: export KUBECONFIG=$(abspath $(KIND_KUBECONFIG))
## Setup a local env for feature development. (Kind, OLM, OKD Console)
dev-setup:
./mage dev:setup
.PHONY: dev-setup
## Setup a local env for integration test development. (Kind, OLM, OKD Console, Addon Operator). Use with test-integration-short.
test-setup: | \
dev-setup \
setup-addon-operator
.PHONY: test-setup
## Deletes the previously created kind cluster.
delete-kind-cluster:
./mage dev:teardown
.PHONY: delete-kind-cluster
## Setup Prometheus Kubernetes stack
setup-monitoring: helm
@(kubectl create ns monitoring)
@(helm repo add prometheus-community https://prometheus-community.github.io/helm-charts)
@(helm repo update)
-helm install prometheus prometheus-community/kube-prometheus-stack -n monitoring --set grafana.enabled=false --set kubeStateMetrics.enabled=false --set nodeExporter.enabled=false
@(kubectl apply -f https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.60.1/example/prometheus-operator-crd/monitoring.coreos.com_servicemonitors.yaml)
@(helm install prometheus prometheus-community/kube-prometheus-stack -n monitoring --set grafana.enabled=false --set kubeStateMetrics.enabled=false --set nodeExporter.enabled=false)
## Loads and installs the Addon Operator into the currently selected cluster.
setup-addon-operator:
./mage dev:deploy
.PHONY: setup-addon-operator
## Installs Addon Operator CRDs in to the currently selected cluster.
setup-addon-operator-crds:
@for crd in $(wildcard deploy/crds/*.openshift.io_*.yaml); do \
kubectl apply -f $$crd; \
done
.PHONY: setup-addon-operator-crds
# ------------------
##@ Container Images
# ------------------
## Build all images.
build-images:
./mage build:buildimages
.PHONY: build-images
## Build and push all images.
push-images:
./mage build:pushimages
.PHONY: push-images
## Builds config/docker/%.Dockerfile using a binary build from cmd/%.
build-image-%:
./mage build:imagebuild $*
## Build and push config/docker/%.Dockerfile using a binary build from cmd/%.
push-image-%:
./mage build:imagepush $*
# cleans the config/openshift folder for addon-operator-bundle openshift test folder
clean-config-openshift:
@rm -rf "config/openshift/*"
ensure-govulncheck:
@ls $(GOPATH)/bin/govulncheck 1>/dev/null || go install golang.org/x/vuln/cmd/govulncheck@${GOVULNCHECK_VERSION}
scan: ensure-govulncheck
govulncheck ./...
.PHONY: boilerplate-update
boilerplate-update:
@boilerplate/update
## Build and push only the addon-operator-package
.PHONY: build-push-package
build-push-package:
hack/build-package.sh ${PKG_IMG}:${PKG_IMAGETAG}
.PHONY: build-package
build-package: validate-package
@chmod 777 ${PWD}/hack/hypershift/package/hcp/addon-operator.yaml.gotmpl
$(CONTAINER_ENGINE) run --privileged --rm -v ${PWD}:/workdir quay.io/app-sre/yq:4 -i '.spec.template.spec.containers[0].image = "$(OPERATOR_IMAGE_URI)"' \
hack/hypershift/package/hcp/addon-operator.yaml.gotmpl
$(CONTAINER_ENGINE) build -t $(PKG_IMG):$(PKG_IMAGETAG) -f $(join $(CURDIR),/hack/hypershift/package/addon-operator-package.Containerfile) . && \
$(CONTAINER_ENGINE) tag $(PKG_IMG):$(PKG_IMAGETAG) $(PKG_IMG):latest
## Validate ADO package
.PHONY: validate-package
validate-package:
@echo "-------- Running package validation --------"
$(CONTAINER_ENGINE) run --rm -v $(PWD):/workdir:z $(PKO_CLI_IMAGE) validate ./workdir/hack/hypershift/package
@echo "-------- Package validated successfully --------"
.PHONY: skopeo-push
skopeo-push-package:
@if [[ -z $$QUAY_USER || -z $$QUAY_TOKEN ]]; then \
echo "You must set QUAY_USER and QUAY_TOKEN environment variables" ;\
echo "ex: make QUAY_USER=value QUAY_TOKEN=value $@" ;\
exit 1 ;\
fi
# QUAY_USER and QUAY_TOKEN are supplied as env vars
skopeo copy --dest-creds "${QUAY_USER}:${QUAY_TOKEN}" \
"containers-storage:${PKG_IMG}:${PKG_IMAGETAG}" \
"docker://${PKG_IMG}:latest"
skopeo copy --dest-creds "${QUAY_USER}:${QUAY_TOKEN}" \
"containers-storage:${PKG_IMG}:${PKG_IMAGETAG}" \
"docker://${PKG_IMG}:${PKG_IMAGETAG}"