Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1086 from flanksource/cert-manager-disable-crds
Browse files Browse the repository at this point in the history
fix: add the ability to disable cert manager crds
  • Loading branch information
moshloop authored Oct 19, 2023
2 parents d1a5d6d + f15a4e5 commit a9b6d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/phases/crds/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
func Install(p *platform.Platform) error {
f := func() bool { return false }
crds := map[string]func() bool{
"cert-manager": f,
"cert-manager": func() bool { return p.CertManager.Disabled },
"service-monitor": f,
"canary-checker": p.CanaryChecker.IsDisabled,
"template-operator": p.TemplateOperator.IsDisabled,
Expand Down

0 comments on commit a9b6d20

Please sign in to comment.