Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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) \
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deploy/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ monitoring:
namespace: monitoring

certManager:
enabled: true
enabled: false
issuer:
name: olm-ca-issuer
selfSigned: true
Expand Down