github loft-sh/vcluster v0.20.0-alpha.3

latest releases: v0.20.0-beta.1, v0.20.0-alpha.4
pre-release27 days ago

!!! Breaking Changes !!!

New helm values.yaml format

We changed the vCluster values.yaml format in this release and most old helm values will no longer work. We will provide a migration script that automatically updates the old values to the new ones. You can check the new format at https://github.com/loft-sh/vcluster/blob/main/chart/values.yaml

Merged all vCluster charts into a single one

We merged all different vCluster charts (vcluster, vcluster-k8s, vcluster-k0s & vcluster-eks) into a single helm chart. This should simplify vCluster deployment in the future. We will provide a migration script that automatically updates the old values to the new ones and we added a values schema json to the helm chart that will let upgrading of the chart fail if the values format doesn't match. You can check the new format at https://github.com/loft-sh/vcluster/blob/main/chart/values.yaml

You can enable a specific distro now via the helm chart values:

controlPlane:
  distro:
    k8s:
      enabled: true

K8s distro is now the default distribution

We changed the default distro from k3s to k8s as k8s is the least opinionated and you can now also use kine with k8s, which allows to use SQLite and other storage backends with the regular k8s distro to overcome the biggest problem using k8s so far for smaller vClusters.

K8s distro default backing store is now SQLite

Currently it was only possible to use external etcd deployed by vCluster or embedded etcd (as a pro feature) with the k8s distro. With v0.20 its also possible to use Kine with the k8s distro and SQLite is the new default for it. You can still use the external etcd deployed by vCluster with:

controlPlane:
  distro:
    k8s:
      enabled: true
  backingStore:
    etcd:
      deploy:
        enabled: true

What's Changed

New Contributors

Full Changelog: v0.19.5...v0.20.0-alpha.3

Don't miss a new vcluster release

NewReleases is sending notifications on new releases.