You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: workspaces/controller/devenv/Makefile
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -20,12 +20,10 @@ cleanup-crds:
20
20
21
21
## Requirements
22
22
23
-
CERT_MANAGER_VERSION := 1.17.1
24
-
25
23
.PHONY: check-cert-manager
26
24
check-cert-manager: cmctl
27
-
@echo "Checking if cert-manager is installed and ready..."
28
-
@$(LOCALBIN)/cmctl check api > /dev/null 2>&1|| (printf "cert-manager is not installed or is not ready yet, please install cert-manager first or wait for it to be ready.\nYou can install cert-manager by running the following command:\n\nkubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v$(CERT_MANAGER_VERSION)/cert-manager.yaml\n\n"&&exit 1)
25
+
@echo "Verifying cert-manager installation..."
26
+
@$(LOCALBIN)/cmctl check api > /dev/null 2>&1|| (printf "cert-manager is either not installed or not ready. Please install cert-manager or wait until it becomes ready.\nInstallation instructions can be found here: https://cert-manager.io/docs/installation/\n\n"&&exit 1)
0 commit comments