Custom Installation/Upgrade
If you’re trying to upgrade from a big version later (e.g. from 1.2.x to 1.4.x), please refer to version migration for more guides.
- Script
- Homebrew
- Download directly from releases
- Docker
MacOS/Linux
Windows
tip
Pre-release versions will not be listed.
macOS/Linux
Update your brew first. Please note that the brew method only supports the installation of the official release version.
brew update
brew install kubevela
- Download the latest
vela
binary file via . - Unzip the binary file, and configure the environment variables in
$PATH
, and you’re done.
sudo mv ./vela /usr/local/bin/vela
caution
Installation Tips: If you are using a Mac system, it will pop up a warning that “vela” cannot be opened because the package from the developer cannot be verified.
MacOS imposes stricter restrictions on the software that can run in the system. You can temporarily solve this problem by opening System Preference ->Security & Privacy -> General
and clicking on Allow Anyway
.
Pull the latest image from the docker registry, or specify a version as tag:
note
Please make sure you already upgraded the Vela CLI to latest stable version.
vela addon enable velaux
tip
Before uninstalling kubevela, you must delete all applications and disable all addons.
- Uninstall VelaUX
vela addon disable velaux
- Uninstall KubeVela Core
vela uninstall
- Uninstall CRD
Before deleting, you must delete all CR resources.
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
helm install cert-manager jetstack/cert-manager --namespace cert-manager --version v1.2.0 --create-namespace --set installCRDs=true
Install kubevela with enabled certmanager:
vela install --set admissionWebhooks.certManager.enabled=true
vela version list -a
# Install the specified version.
vela install --version 1.3.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:
kubectl krew update
- install kubectl vela:
macOS/Linux
You can also download the binary from manually. Kubectl will discover it from your system path automatically.