We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59a8be5 commit 3d3f7cdCopy full SHA for 3d3f7cd
backend/Makefile
@@ -6,11 +6,17 @@ TLS_ENABLED ?= "false"
6
CERT_MANAGER_VERSION ?= v1.16.2
7
8
# Container Build Params
9
-CONTAINER_ENGINE ?= podman
+CONTAINER_ENGINE ?= $(shell \
10
+ if command -v docker >/dev/null 2>&1; then \
11
+ echo docker; \
12
+ elif command -v podman >/dev/null 2>&1; then \
13
+ echo podman; \
14
+ fi \
15
+)
16
17
# IMG_REGISTRY can be used to automatically prepend registry details. e.g. "quay.io/kubeflow/"
-IMG_REGISTRY ?= quay.io/rh-ee-agoins/
-IMG_TAG_APISERVER ?= apiserver:10
18
+IMG_REGISTRY ?=
19
+IMG_TAG_APISERVER ?= apiserver
20
IMG_TAG_PERSISTENCEAGENT ?= persistence-agent
21
IMG_TAG_CACHESERVER ?= cache-server
22
IMG_TAG_SCHEDULEDWORKFLOW ?= scheduledworkflow
0 commit comments