diff --git a/Makefile b/Makefile index 84258f16d..495324710 100644 --- a/Makefile +++ b/Makefile @@ -347,7 +347,7 @@ hack-install-cert-manager: install-helm --install \ --create-namespace \ --namespace cert-manager \ - --set installCRDs=true \ + --set crds.enabled=true \ --wait .PHONY: hack-install-argocd diff --git a/hack/quickstart/install.sh b/hack/quickstart/install.sh index 16f76a399..027988dad 100755 --- a/hack/quickstart/install.sh +++ b/hack/quickstart/install.sh @@ -11,7 +11,7 @@ helm install cert-manager cert-manager \ --version $cert_manager_chart_version \ --namespace cert-manager \ --create-namespace \ - --set installCRDs=true \ + --set crds.enabled=true \ --wait helm install argocd argo-cd \ diff --git a/hack/quickstart/k3d.sh b/hack/quickstart/k3d.sh index d43796caa..1d6ef69ec 100755 --- a/hack/quickstart/k3d.sh +++ b/hack/quickstart/k3d.sh @@ -18,7 +18,7 @@ helm install cert-manager cert-manager \ --version $cert_manager_chart_version \ --namespace cert-manager \ --create-namespace \ - --set installCRDs=true \ + --set crds.enabled=true \ --wait helm install argocd argo-cd \ diff --git a/hack/quickstart/kind.sh b/hack/quickstart/kind.sh index 4af49b31e..18c1dcccb 100755 --- a/hack/quickstart/kind.sh +++ b/hack/quickstart/kind.sh @@ -32,7 +32,7 @@ helm install cert-manager cert-manager \ --version $cert_manager_chart_version \ --namespace cert-manager \ --create-namespace \ - --set installCRDs=true \ + --set crds.enabled=true \ --wait helm install argocd argo-cd \