VirtualCluster represents a new architecture to address various Kubernetes control plane isolation challenges. It extends existing namespace based Kubernetes multi-tenancy model by providing each tenant a cluster view. VirtualCluster completely leverages Kubernetes extendability and preserves full API compatibility. That being said, the core Kubernetes components are not modified in virtual cluster.
With VirtualCluster, each tenant is assigned a dedicated tenant master, which is a upstream Kubernetes distribution. Tenants can create cluster scope resources such as namespaces and CRDs in the tenant master without affecting others. As a result, most of the isolation problems due to sharing one apiserver disappear. The Kubernetes cluster that manages the actual physical nodes is called a super master, which now becomes a Pod resource provider. VirtualCluster is composed of the following components:
-
vc-manager: A new CRD VirtualCluster is introduced to model the tenant master.
vc-manager
manages the lifecycle of eachVirtualCluster
custom resource. Based on the specification, it either createsapiserver
,etcd
andcontroller-manager
Pods in local K8s cluster, or imports an existing cluster if a validkubeconfig
is provided. -
syncer: A centralized controller that populates API objects needed for Pod provisioning from every tenant master to the super master, and bidirectionally syncs the object statuses. It also periodically scans the synced objects to ensure the states between tenant master and super master are consistent.
-
vn-agent: A node daemon that proxies all tenant kubelet API requests to the kubelet process that running in the node. It ensures each tenant can only access its own Pods in the node.
With all above, from the tenant’s perspective, each tenant master behaves like an intact Kubernetes with nearly full API capabilities.
Kubecon EU 2020 talk (~25 mins) | WG meeting demo (~50 mins) |
---|---|
Please follow the instructions to install VirtualCluster in your local K8s cluster.
VirtualCluster passes most of the Kubernetes conformance tests. One failing test asks for supporting
subdomain
which cannot be easily done in the VirtualCluster architecture.
Here are other considerations that users should be aware of:
-
VirtualCluster follows a serverless design pattern. The super master node topology is not fully exposed in tenant master. Only the nodes that tenant Pods are running on will be shown in tenant master. As a result, VirtualCluster does not support
DaemonSet
alike workloads in tenant master. In other words, the syncer controller rejects a newly created tenant Pod if itsnodename
has been set in the spec. -
It is recommended to increase the tenant master node controller
--node-monitor-grace-period
parameter to a larger value ( >60 seconds, done in the sample clusterversion yaml already). The syncer controller does not update the node lease objects in tenant master, hence the default grace period is too small. -
Coredns is not tenant-aware. Hence, tenant should install coredns in tenant master if DNS is required. The DNS service should be created in
kube-system
namespace using namekube-dns
. The syncer controller can then recognize the DNS service cluster IP in super master and inject it into Pod specdnsConfig
. -
VirtualCluster supports tenant DNS service using a customized coredns build. See this document for details.
-
VirtualCluster fully support tenant service account.
-
VirtualCluster does not support tenant PersistentVolumes. All PVs and Storageclasses are provided by the super master.
-
It is recommended that tenant master and super master should use the same Kubernetes version to avoid incompatible API behaviors. The syncer controller and vn-agent are built using Kubernetes 1.16 APIs, hence higher Kubernetes versions are not supported at this moment.
The first release is coming soon.
VirtualCluster is a SIG multi-tenancy WG incubator project. If you have any questions or want to contribute, you are welcome to file issues or pull requests.
You can also directly contact VirtualCluster maintainers via the WG slack channel.
Lead developer: @Fei-Guo(f.guo@alibaba-inc.com)