This message was deleted.
# general
s
This message was deleted.
b
hey, this is a problem with the chart. They've included the status in the output CRD which throws the error. You can get around it using a transformation:
Copy code
def remove_status(obj, opts):
    if obj["kind"] == "CustomResourceDefinition":
        del obj["status"]
  

cert_manager = Chart(
    "cert-manager-helm-chart",
    ChartOpts(
        chart="cert-manager",
        version="v1.1.0",
        namespace="cert-manager",
        fetch_opts=FetchOpts(
            repo="<https://charts.jetstack.io/>",
            ),
        values={
            "installCRDs": True
        }
        transformations=[remove_status]
    ), opts=ResourceOptions(provider=k8s_provider)