diff --git a/Makefile b/Makefile index c2beb5a106..699eb0f957 100644 --- a/Makefile +++ b/Makefile @@ -163,7 +163,7 @@ local-build: IMAGE_TAG = local local-build: image .PHONY: run-local -run-local: local-build kind-create cert-manager-install deploy +run-local: local-build kind-create deploy .PHONY: cert-manager-install cert-manager-install: #HELP Install cert-manager $(CERT_MANAGER_VERSION) @@ -259,7 +259,6 @@ deploy: $(KIND) $(HELM) #HELP Deploy OLM to kind cluster $KIND_CLUSTER_NAME (def $(KIND) load docker-image $(OLM_IMAGE) --name $(KIND_CLUSTER_NAME); \ $(HELM) upgrade --install olm deploy/chart \ --set debug=true \ - --set certManager.enabled=true \ --set olm.image.ref=$(OLM_IMAGE) \ --set olm.image.pullPolicy=IfNotPresent \ --set catalog.image.ref=$(OLM_IMAGE) \ @@ -283,9 +282,6 @@ undeploy: $(KIND) $(HELM) #HELP Uninstall OLM from kind cluster $KIND_CLUSTER_NA $(HELM) uninstall olm kubectl delete -f deploy/chart/crds - # Uninstall cert-manager - $(MAKE) cert-manager-uninstall - #SECTION e2e # E2E test configuration diff --git a/deploy/chart/values.yaml b/deploy/chart/values.yaml index af9968d327..394159bb4b 100644 --- a/deploy/chart/values.yaml +++ b/deploy/chart/values.yaml @@ -79,7 +79,7 @@ monitoring: namespace: monitoring certManager: - enabled: true + enabled: false issuer: name: olm-ca-issuer selfSigned: true