From bf30e78133cba96c493a33d60e1773ff67dd3d1d Mon Sep 17 00:00:00 2001 From: Nobody Date: Mon, 23 Jun 2025 12:52:49 -0700 Subject: [PATCH] Add ingress config and check target --- simple-proj/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/simple-proj/Makefile b/simple-proj/Makefile index 8e4a037..7290a48 100644 --- a/simple-proj/Makefile +++ b/simple-proj/Makefile @@ -12,9 +12,16 @@ load: apply: kubectl apply -f k8s/ + kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.10.0/deploy/static/provider/kind/deploy.yaml + restart: kubectl delete pod -l app=shoppinglist-frontend + +check: + kubectl get pods + kubectl get pods -n ingress-nginx + watch: kubectl get pods -l app=shoppinglist-frontend -w