-
As the question suggests, how do the crds get updated when deploying using helm? Since helm3 does not upgrade crds |
Beta Was this translation helpful? Give feedback.
Answered by
akijakya
Dec 4, 2023
Replies: 1 comment 1 reply
-
Hi @shezaan, you can upgrade the CRD to the version of your choice with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
csatib02
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @shezaan, you can upgrade the CRD to the version of your choice with
kubectl apply
before upgrading with Helm, or sincev1.21.0
you can also use kustomize, e.g.kubectl kustomize https://github.com/bank-vaults/vault-operator/deploy/crd\?ref\=v1.21.0 | kubectl apply -f -
!