You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have been working on creating a Helm Chart for an internal operator. It requires cert-manager for installation. I have used -cert-manager-as-subchart to generate cert-manager dependency. Once I have tried installing the chart, I got an error:
Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: [resource mapping not found for name: "OPERATOR_NAME-serving-cert" namespace: "default" from "": no matches for kind "Certificate" in version "cert-manager.io/v1"
ensure CRDs are installed first, resource mapping not found for name: "<OPERATOR_NAME>-selfsigned-issuer" namespace: "default" from "": no matches for kind "Issuer" in version "cert-manager.io/v1"
ensure CRDs are installed first]
It seems that it's a frequent issue across many operators(GitLab operator example) due to missing cert-manager CRDs. One of the solutions is to install CRDs prior to the chart installation and setting --set cert-manager.installCRD to false.
I see that the value for cert-manager.installCRD is hardcoded to truehere. I would like to contribute to the project and create another flag to change value of this field.
Let me know what do you think.
The text was updated successfully, but these errors were encountered:
Hi,
I have been working on creating a Helm Chart for an internal operator. It requires cert-manager for installation. I have used
-cert-manager-as-subchart
to generate cert-manager dependency. Once I have tried installing the chart, I got an error:It seems that it's a frequent issue across many operators(GitLab operator example) due to missing cert-manager CRDs. One of the solutions is to install CRDs prior to the chart installation and setting
--set cert-manager.installCRD
tofalse
.I see that the value for
cert-manager.installCRD
is hardcoded totrue
here. I would like to contribute to the project and create another flag to change value of this field.Let me know what do you think.
The text was updated successfully, but these errors were encountered: