From 6880a3669ed86d38bf38c8b796ee8f37f3cc80d0 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Sun, 10 Oct 2021 03:15:15 +0200
Subject: [PATCH] cli: Make koolbox image name a constant

---
 cli/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/cli/Makefile b/cli/Makefile
index f0553f990..e6ea78236 100644
--- a/cli/Makefile
+++ b/cli/Makefile
@@ -3,6 +3,9 @@
 XDG_CONFIG_HOME ?= $(HOME)/.config
 EDITOR ?= "vi"
 
+# Do not adjust.
+KOOLBOX_IMAGE = "quay.io/sheogorath/koolbox:latest"
+
 include ../utils/help.mk
 
 .PHONY: preflight
@@ -16,7 +19,7 @@ install: preflight ## Install koolbox, the Kubernetes Toolbox for SI-Infrastruct
 
 .PHONY: build
 build: preflight ## Build container locally instead of using one from upstream
-	podman build -t quay.io/sheogorath/koolbox:latest .
+	podman build -t $(KOOLBOX_IMAGE) .
 
 .PHONY: config
 config: ## Edit your koolbox environment config
-- 
GitLab