21 lines
351 B
Makefile
21 lines
351 B
Makefile
|
|
|
|
cluster: kind-config.yaml
|
|
kind create cluster --config kind-config.yaml
|
|
|
|
|
|
image: Dockerfile
|
|
docker build -t shoppinglist-frontend:latest .
|
|
|
|
load:
|
|
kind load docker-image shoppinglist-frontend:latest
|
|
|
|
apply:
|
|
kubectl apply -f k8s/
|
|
|
|
restart:
|
|
kubectl delete pod -l app=shoppinglist-frontend
|
|
|
|
watch:
|
|
kubectl get pods -l app=shoppinglist-frontend -w
|