Skip to content

Commit 3d593a1

Browse files
committed
chore(devenv): change cert-manager missing text in Makefile
Signed-off-by: Alessio Pragliola <seth.pro@gmail.com>
1 parent 7e2f220 commit 3d593a1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

workspaces/controller/devenv/Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,10 @@ cleanup-crds:
2020

2121
## Requirements
2222

23-
CERT_MANAGER_VERSION := 1.17.1
24-
2523
.PHONY: check-cert-manager
2624
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)
2927
@echo "cert-manager is installed and ready."
3028

3129
## Location to install dependencies to

0 commit comments

Comments
 (0)