升级和高级安装选项
- Script
- Homebrew
- Download directly from releases
- Docker
Windows
macOS/Linux
Update your brew first. Please note that the brew method only supports the installation of the official release version.
brew install kubevela
- 通过 release log 下载二进制压缩文件。
- 解压文件并将二进制文件移动到 $PATH 路径下。
sudo mv ./vela /usr/local/bin/vela
Pull the latest image from the docker registry, or specify a version as tag:
vela install
- 卸载 VelaUX
vela addon disable velaux
- 卸载 KubeVela Core
vela uninstall
- 卸载 CRD
By default, KubeVela will use a self-signed certificate provided by for admissionWebhooks. You can also use cert-manager if it’s available. Note that you need to install cert-manager before the KubeVela chart.
helm repo add jetstack https://charts.jetstack.io
helm repo update
Install kubevela with enabled certmanager:
vela install --set admissionWebhooks.certManager.enabled=true
vela version list -a
# Install the specified version.
vela install --version 1.4.0-beta.2
kubectl-vela
provides the same features with vela
CLI, it helps you to integrate with kubectl better.
- Krew
- Script
- Install and set up Krew on your machine.
- Discover plugins available on Krew:
- install kubectl vela:
macOS/Linux
curl -fsSl https://kubevela.io/script/install-kubectl-vela.sh | bash