Skip to content

Commit 4f3479f

Browse files
djwfyiclaude
andcommitted
docs(doc-1334): terminology — remaining vcluster sections batch 5
Replace "virtual cluster(s)" with "tenant cluster(s)" and "host cluster" with "control plane cluster" across key-features, understand, configure, deploy, integrations, learn-how-to, reference, troubleshoot, and _fragments sections. Fixes broken anchor in architecture.mdx referencing replicate-services after prior heading rename. Part of DOC-1334 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 270c62c commit 4f3479f

74 files changed

Lines changed: 477 additions & 478 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
:::info
2-
vCluster uses Kubernetes as the default distribution for the virtual cluster.
2+
vCluster uses Kubernetes as the default distribution for the tenant cluster.
33
:::

vcluster/_fragments/delete-vcluster.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Tabs from '@theme/Tabs'
22
import TabItem from '@theme/TabItem'
33

44
:::caution Resources inside vCluster
5-
Deleting a vCluster instance also deletes all objects within and all states related to the vCluster. If the namespace on the host cluster was created by the vCluster CLI, then that namespace is also deleted.
5+
Deleting a vCluster instance also deletes all objects within and all states related to the vCluster. If the namespace on the control plane cluster was created by the vCluster CLI, then that namespace is also deleted.
66
:::
77

88
<Tabs
@@ -33,7 +33,7 @@ helm delete my-vcluster -n vcluster-my-vcluster --repository-config=''
3333
</TabItem>
3434
<TabItem value="kubectl">
3535

36-
The easiest option to delete a virtual cluster using `kubectl` is to delete the host namespace:
36+
The easiest option to delete a tenant cluster using `kubectl` is to delete the host namespace:
3737
```bash
3838
kubectl delete namespace vcluster-my-vcluster
3939
```

vcluster/_fragments/deploy/backing-store.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ controlPlane:
4848
<TabItem value="embedded-sqlite-nopv">
4949
5050
By default, vCluster stores its data in a `PersistentVolumeClaim` (PVC).
51-
Alternatively, you can use an [`emptyDir`](https://kubernetes.io/docs/concepts/storage/volumes/#emptydir) volume to store virtual cluster data.
51+
Alternatively, you can use an [`emptyDir`](https://kubernetes.io/docs/concepts/storage/volumes/#emptydir) volume to store tenant cluster data.
5252

5353
To use an `emptyDir` to store the data instead of a `PersistentVolume`, create a `values.yaml` with the following contents:
5454

vcluster/_fragments/deploy/control-plane.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ import BackingStoreYAMLOptions from './backing-store.mdx'
55
Decide the various options of how you want your control plane deployed:
66

77
- **[High availability](./high-availability)** - Run multiple copies of vCluster components.
8-
- **[Rootless mode](./security/rootless-mode)** - Deploy the vCluster pod without root access to the host cluster.
8+
- **[Rootless mode](./security/rootless-mode)** - Deploy the vCluster pod without root access to the control plane cluster.
99
- **Backing Store** - Decide how the data of your cluster is stored.
1010
<BackingStoreYAMLOptions />

vcluster/_fragments/deploy/nested/control-plane.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ import BackingStoreYAMLOptions from '../backing-store.mdx'
55
Decide the various options of how you want your control plane deployed:
66

77
- **[High availability](./../high-availability)** - Run multiple copies of vCluster components.
8-
- **[Rootless mode](./../security/rootless-mode)** - Deploy the vCluster pod without root access to the host cluster.
8+
- **[Rootless mode](./../security/rootless-mode)** - Deploy the vCluster pod without root access to the control plane cluster.
99
- **Backing Store** - Decide how the data of your cluster is stored.
1010
<BackingStoreYAMLOptions />

vcluster/_fragments/deploy/nested/worker-nodes.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Decide where you want your worker nodes to come from:
44

5-
- **[Nodes from the host cluster](../../../worker-nodes/host-nodes)** - (Default) All worker nodes of the shared host cluster are used by the virtual cluster and all resources are synced to the single namespace that the vCluster is deployed on.
6-
- **[Syncing Namespaces](../../../../configure/vcluster-yaml/sync/from-host/nodes)** - Resources are synced to mapped namespaces on the host cluster.
5+
- **[Nodes from the control plane cluster](../../../worker-nodes/host-nodes)** - (Default) All worker nodes of the shared control plane cluster are used by the tenant cluster and all resources are synced to the single namespace that the vCluster is deployed on.
6+
- **[Syncing Namespaces](../../../../configure/vcluster-yaml/sync/from-host/nodes)** - Resources are synced to mapped namespaces on the control plane cluster.
77
- **[Isolated workloads](../../../worker-nodes/host-nodes/isolated-workloads)** - Different options to isolate a workload in a vCluster.
8-
- **[Private Nodes](../../../worker-nodes/private-nodes)** - Enable adding individual nodes to the virtual cluster.
8+
- **[Private Nodes](../../../worker-nodes/private-nodes)** - Enable adding individual nodes to the tenant cluster.

vcluster/_fragments/deploy/worker-nodes.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Decide where you want your worker nodes to come from:
55

6-
- **[Nodes from the host cluster](../../worker-nodes/host-nodes)** - (Default) All worker nodes of the shared host cluster are used by the virtual cluster and all resources are synced to the single namespace that the vCluster is deployed on.
7-
- **[Syncing Namespaces](../../../configure/vcluster-yaml/sync/from-host/nodes)** - Resources are synced to mapped namespaces on the host cluster.
6+
- **[Nodes from the control plane cluster](../../worker-nodes/host-nodes)** - (Default) All worker nodes of the shared control plane cluster are used by the tenant cluster and all resources are synced to the single namespace that the vCluster is deployed on.
7+
- **[Syncing Namespaces](../../../configure/vcluster-yaml/sync/from-host/nodes)** - Resources are synced to mapped namespaces on the control plane cluster.
88
- **[Isolated workloads](../../worker-nodes/host-nodes/isolated-workloads)** - Different options to isolate a workload in a vCluster.
9-
- **[Private Nodes](../../worker-nodes/private-nodes)** - Enable adding individual nodes to the virtual cluster.
9+
- **[Private Nodes](../../worker-nodes/private-nodes)** - Enable adding individual nodes to the tenant cluster.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import KubernetesVersions from '../../_partials/deploy/kubernetes-versions.mdx'
22
import { HostClusterCompat } from '../../_partials/deploy/host-cluster-compat.mdx'
33

4-
### Host cluster compatibility
4+
### Control plane cluster compatibility
55
<HostClusterCompat distro="k0s"/>
66

7-
vCluster should work when deployed on a host cluster with the following supported Kubernetes versions:
7+
vCluster should work when deployed on a control plane cluster with the following supported Kubernetes versions:
88
<KubernetesVersions/>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import KubernetesVersions from '../../_partials/deploy/kubernetes-versions.mdx'
22
import { HostClusterCompat } from '../../_partials/deploy/host-cluster-compat.mdx'
33

4-
### Host cluster compatibility
4+
### Control plane cluster compatibility
55
<HostClusterCompat distro="k3s"/>
66

7-
vCluster should work when deployed on a host cluster with the following supported Kubernetes versions:
7+
vCluster should work when deployed on a control plane cluster with the following supported Kubernetes versions:
88
<KubernetesVersions/>
99

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { HostClusterCompat } from '../../_partials/deploy/host-cluster-compat.mdx'
22

3-
### Host cluster compatibility
3+
### Control plane cluster compatibility
44
<HostClusterCompat distro="k8s"/>
55

6-
vCluster supports specific Kubernetes versions on host clusters. For more information, see the [Kubernetes compatibility matrix](../../manage/upgrade/supported_versions.mdx#kubernetes-compatibility-matrix).
6+
vCluster supports specific Kubernetes versions on control plane clusters. For more information, see the [Kubernetes compatibility matrix](../../manage/upgrade/supported_versions.mdx#kubernetes-compatibility-matrix).

0 commit comments

Comments
 (0)