From 437a23a898a6d77031fdcdfb56f5f2446d29227e Mon Sep 17 00:00:00 2001 From: John Kenyon Date: Mon, 23 Jun 2025 08:29:41 -0700 Subject: [PATCH] Add make command for making kind cluster --- simple-proj/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/simple-proj/Makefile b/simple-proj/Makefile index 754e8ae..8e4a037 100644 --- a/simple-proj/Makefile +++ b/simple-proj/Makefile @@ -1,4 +1,9 @@ + +cluster: kind-config.yaml + kind create cluster --config kind-config.yaml + + image: Dockerfile docker build -t shoppinglist-frontend:latest .