From 25f267bfcde90bd0af806c264625a83efcb554bf Mon Sep 17 00:00:00 2001 From: Kent Iso Date: Fri, 10 Jun 2022 21:15:56 +0900 Subject: [PATCH] Fix deprecated command for make minikube-push --- build/includes/minikube.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/includes/minikube.mk b/build/includes/minikube.mk index ba3be2678c..6bce239698 100644 --- a/build/includes/minikube.mk +++ b/build/includes/minikube.mk @@ -38,10 +38,10 @@ minikube-shell: $(ensure-build-image) # Push the local Agones Docker images that have already been built # via `make build` or `make build-images` into the "agones" minikube instance. minikube-push: - $(MINIKUBE) cache add $(sidecar_linux_amd64_tag) - $(MINIKUBE) cache add $(controller_tag) - $(MINIKUBE) cache add $(ping_tag) - $(MINIKUBE) cache add $(allocator_tag) + $(MINIKUBE) image load $(sidecar_linux_amd64_tag) -p $(MINIKUBE_PROFILE) + $(MINIKUBE) image load $(controller_tag) -p $(MINIKUBE_PROFILE) + $(MINIKUBE) image load $(ping_tag) -p $(MINIKUBE_PROFILE) + $(MINIKUBE) image load $(allocator_tag) -p $(MINIKUBE_PROFILE) # Installs the current development version of Agones into the Kubernetes cluster. # Use this instead of `make install`, as it disables PullAlways on the install.yaml