Closed aronneagu closed 3 months ago
Looks like the mentioned CRDs were already installed in the cluster before werf converge
. But they weren't installed as a part of a Helm release, thus they miss the Helm release labels/annotations. Probably you installed cert-manager CRDs earlier either manually or with a different Helm chart.
As of now it's probably easier to disable CRDs installation and re-run werf converge
:
cat > .helm/values.yaml <<EOF
cert-manager:
installCRDs: false
startupapicheck:
enabled: false
EOF
Hi all,
Trying to run the example from the Readme (https://github.com/werf/nelm?tab=readme-ov-file#getting-started-with-nelm-via-werf) page returns a bunch of errors
Getting the same error when running the
werf converge --env dev
commandDoes anyone know what am I missing?