forked from red-hat-storage/odf-must-gather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
51 lines (38 loc) · 1.42 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
all: images
.PHONY: all local docker-rancher-build docker-engine-build
# Include the library makefile
include $(addprefix ./vendor/github.com/openshift/build-machinery-go/make/, \
golang.mk \
targets/openshift/images.mk \
)
IMAGE_REGISTRY :=registry.svc.ci.openshift.org
IMG_TAG ?= odf-mg
# This will call a macro called "build-image" which will generate image specific targets based on the parameters:
# $0 - macro name
# $1 - target name
# $2 - image ref
# $3 - Dockerfile path
# $4 - context directory for image build
$(call build-image,odf-must-gather,$(IMAGE_REGISTRY)/ocp/4.14:odf-must-gather, ./Dockerfile,.)
$(call verify-golang-versions,Dockerfile)
docker-rancher-build:
docker context use rancher-desktop
docker build . -t $(IMG_TAG) --platform=linux/amd64
docker-engine-build:
docker build . -t $(IMG_TAG) --platform=linux/amd64
local:
ifndef ODF_MG_TOKEN
@echo "ERROR: The ODF_MG_TOKEN environment variable is not set."
@exit 1
endif
@echo "Logging in to the cluster with token: $(ODF_MG_TOKEN)"
@oc login --token=$(ODF_MG_TOKEN) --server=https://api.ci.l2s4.p1.openshiftapps.com:6443 1>/dev/null
@echo "Logging into the CI image registry..."
@oc registry login --registry registry.ci.openshift.org &>/dev/null
@echo "Will be using $(IMG_TAG) as the image tag, you can change this using IMG_TAG env var."
@echo "Building the image..."
ifdef RANCHER
@make docker-rancher-build
else
@make docker-engine-build
endif