Skip to content

Commit 8113d01

Browse files
author
Matthew Barnes
committed
backend: Make Makefile image variables consistent with frontend
The image variables in frontend/Makefile changed recently in #1011 This just makes backend/Makefile use consistent variable names.
1 parent 70741da commit 8113d01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backend/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
HELM_CMD ?= helm upgrade --install
44

55
CURRENT_COMMIT := $(shell git rev-parse --short=7 HEAD)
6-
7-
ARO_HCP_BASE_IMAGE ?= ${ARO_HCP_IMAGE_ACR}.azurecr.io
8-
ARO_HCP_BACKEND_IMAGE ?= $(ARO_HCP_BASE_IMAGE)/arohcpbackend
6+
ARO_HCP_IMAGE_REGISTRY ?= ${ARO_HCP_IMAGE_ACR}.azurecr.io
7+
ARO_HCP_IMAGE_REPOSITORY ?= arohcpbackend
8+
ARO_HCP_BACKEND_IMAGE ?= $(ARO_HCP_IMAGE_REGISTRY)/$(ARO_HCP_IMAGE_REPOSITORY)
99

1010
.DEFAULT_GOAL := backend
1111

0 commit comments

Comments
 (0)