Fix getting started instructions in README

and add Makefile task for rebuild and reload
This commit is contained in:
Jonny Stoten
2024-06-11 10:58:45 +01:00
parent f1923c92fb
commit 14099e3b98
2 changed files with 28 additions and 6 deletions

View File

@@ -34,4 +34,11 @@ docker-buildx: docker-buildx-builder
.PHONY: kind-load-image
kind-load-image:
kind load docker-image ${IMG} --name gatekeeper
kind load docker-image ${IMG}
.PHONY: rollout-restart
rollout-restart:
kubectl -n security rollout restart deployment/attest-provider
.PHONY: reload
reload: docker-buildx kind-load-image rollout-restart