ci(make): pull the latest images
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
parent
2c9e9576c5
commit
51e71a4d52
1 changed files with 8 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue