Skip to content

Commit ebab80a

Browse files
Comment out install/uninstall make targets
1 parent 2c2b0a2 commit ebab80a

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

Makefile

+12-8
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,18 @@ ifndef ignore-not-found
183183
endif
184184

185185
.PHONY: install
186-
install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
187-
$(KUSTOMIZE) build config/crd | kubectl apply -f -
188-
git restore config/*
189-
190-
.PHONY: uninstall
191-
uninstall: manifests 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.
192-
$(KUSTOMIZE) build config/crd | kubectl delete --ignore-not-found=$(ignore-not-found) -f -
193-
git restore config/*
186+
install:
187+
@echo "No CRDs required to be installed"
188+
# Uncomment install and uninstall make targets once AppWrapper CRDs are required.
189+
# .PHONY: install
190+
# install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~/.kube/config.
191+
# $(KUSTOMIZE) build config/crd | kubectl apply -f -
192+
# git restore config/*
193+
194+
# .PHONY: uninstall
195+
# uninstall: manifests 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.
196+
# $(KUSTOMIZE) build config/crd | kubectl delete --ignore-not-found=$(ignore-not-found) -f -
197+
# git restore config/*
194198

195199
.PHONY: deploy
196200
deploy: manifests kustomize ## Deploy controller to the K8s cluster specified in ~/.kube/config.

0 commit comments

Comments
 (0)