forked from netobserv/netobserv-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshortcuts.mk
More file actions
33 lines (23 loc) · 976 Bytes
/
shortcuts.mk
File metadata and controls
33 lines (23 loc) · 976 Bytes
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
##@ shortcuts helpers
.PHONY: build-image
build-image: image-build ## Build MULTIARCH_TARGETS images
.PHONY: push-image
push-image: image-push ## Push MULTIARCH_TARGETS images
.PHONY: build-manifest
build-manifest: manifest-build ## Build MULTIARCH_TARGETS manifest
.PHONY: push-manifest
push-manifest: manifest-push ## Push MULTIARCH_TARGETS manifest
.PHONY: images
images: image-build image-push manifest-build manifest-push ## Build and push MULTIARCH_TARGETS images and related manifest
.PHONY: build-catalog
build-catalog: catalog-build ## Build a catalog image
.PHONY: push-catalog
push-catalog: catalog-push ## Push a catalog image
.PHONY: catalog
catalog: catalog-build catalog-push ## Build and push a catalog image
.PHONY: build-bundle
build-bundle: bundle-build ## Build the bundle image
.PHONY: push-bundle
push-bundle: bundle-push ## Push the bundle image
.PHONY: bundle-all
bundle-all: bundle bundle-build bundle-push ## Build and push the bundle image