Open heruan opened 10 months ago
Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale
.
Stale issues rot after an additional 30d of inactivity and eventually close.
If this issue is safe to close now please do so with /close
.
/lifecycle stale
I'm building a Chart that has trust-manager as a dependency, since it has a template for
Bundle
:but installation fails with:
as if the CRDs for trust-manager are not installed automatically. So if I put the CRDs file in the
crds
directory of my Chart (as I'm doing with cert-manager) I get this other error:as if the CRDs are being installed this time.
I suppose CRDs of dependencies are installed after the templates of the Chart, but that means that I can't use
Bundle
in my templates and it kinda defeats the purpose of a dependency.With
cert-manager
this does not happen since CRDs installation is disabled by default and I have the CRDs file in thecrds
directory.Any suggestions on how to handle this?