helm_v3 install --namespace argo-cd --create-namespace --version 2.9.5 argo-cd argo-cd/argo-cd --values /config/values-01_HelmChart.yaml
Error: INSTALLATION FAILED: failed to install CRD crds/crd-application.yaml: resource mapping not found for name: "applications.argoproj.io" namespace: "" from "": no matches for kind "CustomResourceDefinition" in version "apiextensions.k8s.io/v1beta1"
ensure CRDs are installed first
And in HelmChart options, I did not find a way to add --include-crds.
Is it something that could be added ?
Ok it seems that I have mixed argo-cd version and chart version ... :)
argo-cd is at 2.9.5 but helm chart is at 5.53.9.
Once I have fixed my version everything is working correctly.
It seems that witch helm v3 for some chart, we need to pass the option
--include-crds
to generate CRDs like with argo-cd. I have created this object:But unfortunatelly, install Job does not work:
And in HelmChart options, I did not find a way to add
--include-crds
. Is it something that could be added ?