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? |
Answered by
ilya-lesikov
Aug 5, 2024
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 |
0 replies
Answer selected by
aronneagu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: