Skip to content

v1.6.7

Compare
Choose a tag to compare
@wonderflow wonderflow released this 12 Jan 06:20
· 8 commits to release-1.6 since this release
b11eb84

What's Changed

  • [Backport release-1.6] Fix: keep the workflow data structure in MongoDB by @github-actions in #5283
  • [Backport release-1.6] Test: use mock server in addon tests by @github-actions in #5289
  • [Backport release-1.6] Fix: delete appplication fails if status.workflow.endTime not specified. by @github-actions in #5296
  • [Backport release-1.6] Fix: create a config with the same name reported an incorrect error by @github-actions in #5306
  • [Backport release-1.6] Fix: error msg when uninstall vela by @github-actions in #5309
  • [Backport release-1.6] Fix: don't return err if subresource type is not found when listing application resources. by @github-actions in #5311

How to install

Install Vela Core by Using Vela CLI

curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.6.7
vela install -v 1.6.7

Install Vela Core by Using Helm:

helm repo add kubevela https://charts.kubevela.net/core
helm repo update
helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.6.7 --wait

Install VelaUX addon

vela addon enable velaux --version=v1.6.6

How to upgrade from old version?

Refer to the docs( https://kubevela.net/docs/platform-engineers/system-operation/migration-from-old-version ) if you're migrating from older versions.

Upgrade by using Vela CLI

The install command will also handle the upgrade automatically:

curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.6.7
vela install -v 1.6.7 -r

Upgrade by using Helm

  1. Upgrade the CRDs, please make sure you upgrade the CRDs first before upgrade the helm chart.
kubectl apply -f https://raw.githubusercontent.com/oam-dev/kubevela/release-1.6/charts/vela-core/crds/core.oam.dev_applicationrevisions.yaml
kubectl apply -f https://raw.githubusercontent.com/oam-dev/kubevela/release-1.6/charts/vela-core/crds/core.oam.dev_applications.yaml
kubectl apply -f https://raw.githubusercontent.com/oam-dev/kubevela/release-1.6/charts/vela-core/crds/core.oam.dev_resourcetrackers.yaml
kubectl apply -f https://raw.githubusercontent.com/oam-dev/kubevela/release-1.6/charts/vela-core/crds/core.oam.dev_componentdefinitions.yaml
kubectl apply -f https://raw.githubusercontent.com/oam-dev/kubevela/release-1.6/charts/vela-core/crds/core.oam.dev_definitionrevisions.yaml
  1. Upgrade your kubevela chart
helm repo add kubevela https://charts.kubevela.net/core
helm repo update
helm upgrade -n vela-system --install kubevela kubevela/vela-core --version 1.6.7 --wait
  1. Download the new CLI and enable velaux
curl -fsSl https://kubevela.io/script/install.sh | bash -s 1.6.7
vela addon enable velaux

Upgrade VelaUX

vela addon upgrade velaux --version=v1.6.6

Full Changelog: v1.6.6...v1.6.7