由于 vela 官方 charts 使用的镜像是 latest 的,直接构建需要做版本管理,将镜像tag设置为对应版本,比如,在使用v0.3.2版本时候:
git checkout v0.3.2
helm install --set image.tag=v0.3.2 kubevela vela-core/ -nvela-system
kubevela 提供了 webhook 认证,在更新和升级的时候要看是否一致,不然需要手动清除资源,如果遇到以下错误基本就是webhook 没开启/清除导致的:
Internal error occurred: failed calling webhook "mutating.core.oam-dev.v1alpha2.components": Post https://vela-core-webhook.vela-system.svc:443/mutating-core-oam-dev-v1alpha2-components?timeout=5s: service "vela-core-webhook" not found
出现这种情况一般是,上个版本开启了 webhook,安装了 MutatingWebhookConfiguration
和 ValidatingWebhookConfiguration
资源,但新版本 webhook 设置了关闭。
解决方案有两种,一种是删除旧资源:
kubectl delete ValidatingWebhookConfiguration kubevela-validating-webhook-configuration
kubectl delete MutatingWebhookConfiguration kubevela-mutating-webhook-configuration
另一种是开启 webhook:
helm install --set useWebhook=true kubevela vela-core/ -nvela-system