ci(make): pull the latest images

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
rjshrjndrn 2025-03-13 14:36:33 +01:00
parent 2c9e9576c5
commit 51e71a4d52

View file

@ -14,3 +14,11 @@ clean: ## Clean up the installation
install: ## Install the application
OR_VERSION=$(version) OVERRIDE_FILE=$(override_file) openreplay -i $(domain)
pull: ## Pull the latest version of the application
for image in $(shell kubectl get pods -n app -o jsonpath='{.items[*].spec.containers[*].image}'); do \
sudo crictl pull $$image; \
done
restart: ## Restart the application
kubectl rollout restart deployment -n app