Cannot install demo #119
-
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 Does anyone know what am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Looks like the mentioned CRDs were already installed in the cluster before As of now it's probably easier to disable CRDs installation and re-run cat > .helm/values.yaml <<EOF
cert-manager:
installCRDs: false
startupapicheck:
enabled: false
EOF |
Beta Was this translation helpful? Give feedback.
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
: