Skip to content

Commit be6a1a7

Browse files
committed
update Makefile.
1 parent a906465 commit be6a1a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,11 @@ ifndef ignore-not-found
303303
endif
304304

305305
.PHONY: install
306-
install: kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
306+
install: generate kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
307307
$(KUSTOMIZE) build config/crd | $(KUBECTL) apply -f -
308308

309309
.PHONY: uninstall
310-
uninstall: kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
310+
uninstall: generate kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
311311
$(KUSTOMIZE) build config/crd | $(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f -
312312

313313
##@ Helm
@@ -400,4 +400,4 @@ GOBIN=$(LOCALBIN) go install $${package} ;\
400400
mv $(1) $(1)-$(3) ;\
401401
} ;\
402402
ln -sf $(1)-$(3) $(1)
403-
endef
403+
endef

0 commit comments

Comments
 (0)