We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a24f1 commit d456153Copy full SHA for d456153
Makefile
@@ -228,10 +228,10 @@ kind-load-apiserver: $(KIND) image-apiserver
228
BUILD_FLAGS="-mod=readonly"
229
230
pull-apiserver:
231
- $(MAKE) -C test/apiserver docker-pull
+ $(MAKE) -C test/apiserver pull
232
233
push-apiserver: image-apiserver
234
- $(MAKE) -C test/apiserver docker-push
+ $(MAKE) -C test/apiserver push
235
236
image-apiserver: .image-apiserver-${GIT_VERSION}
237
test/apiserver/makefile
@@ -57,6 +57,9 @@ image: .image-${IMAGE_TAG}
57
58
push: image .push-${IMAGE_TAG}
59
60
+pull:
61
+ docker pull ${IMAGE}
62
+
63
build: bin/apiserver bin/controller-manager
64
65
vendor:
0 commit comments