From f252daec1c62c00e6d12764c7227e05fdb8972a1 Mon Sep 17 00:00:00 2001 From: lumbrjx Date: Fri, 30 Aug 2024 23:14:05 +0100 Subject: [PATCH] BugFix :bug: fix makefile builds --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c11752b..80f9529 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ build-controller: echo "Usage: make build-controller TAG="; \ exit 1; \ fi - docker build -f controller/Dockerfile -t lumbrjx/obzev0poc:$$TAG . + docker build -f controller/Dockerfile -t lumbrjx/obzev0-k8s-controller:$$TAG . push-daemon: @if [ -z "$$TAG" ]; then \ @@ -64,7 +64,7 @@ push-controller: echo "Usage: make push-controller TAG="; \ exit 1; \ fi - docker push lumbrjx/obzev0poc:$$TAG + docker push lumbrjx/obzev0-k8s-controller:$$TAG generate-proto: @if [ -z "$$PROTO_PATH" ]; then \