File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,19 @@ SHELL := /usr/bin/env bash
1515# In CI, to be replaced by `netobserv`
1616IMAGE_ORG ?= $(USER )
1717
18+ # Image registry such as quay or docker
19+ IMAGE_REGISTRY ?= quay.io
20+
1821# IMAGE_TAG_BASE defines the namespace and part of the image name for remote images.
19- IMAGE_TAG_BASE ?= quay.io /${IMAGE_ORG}/network-observability-console-plugin
22+ IMAGE_TAG_BASE ?= $( IMAGE_REGISTRY ) /${IMAGE_ORG}/network-observability-console-plugin
2023
2124# Standalone `true` is used to build frontend outside of OCP Console environment
2225# see .mk/standalone.mk
2326STANDALONE ?= false
2427
2528ifeq (${STANDALONE}, true)
2629 BUILDSCRIPT = :standalone
27- IMAGE_TAG_BASE := quay.io /${IMAGE_ORG}/network-observability-standalone-frontend
30+ IMAGE_TAG_BASE := $(IMAGE_REGISTRY) /${IMAGE_ORG}/network-observability-standalone-frontend
2831endif
2932
3033# Image URL to use all building/pushing image targets
You can’t perform that action at this time.
0 commit comments