Skip to content

Commit 3ea7459

Browse files
Backport: Copy vcluster/_fragments/tenancy-support.mdx to vcluster_versioned_docs/version-0.30.0/_fragments/tenancy-support.mdx (#1367)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0171132 commit 3ea7459

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed
Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
1+
import Link from '@docusaurus/Link';
2+
13
:::info Limited vCluster Tenancy Configuration Support
24
This feature is only available for the following:
35
{(props.hostNodes || props.privateNodes) && (
46
<div>
57
Running the control plane as a container and the following worker node types:
68
<ul className="tenancy-list">
7-
{props.hostNodes && <li><b>Host Nodes</b></li>}
8-
{props.privateNodes && <li><b>Private Nodes</b></li>}
9+
{props.hostNodes && (
10+
<li>
11+
<b>
12+
<Link to="/docs/vcluster/configure/tenancy-model#host-nodes">Host Nodes</Link>
13+
</b>
14+
</li>
15+
)}
16+
{props.privateNodes && (
17+
<li>
18+
<b>
19+
<Link to="/docs/vcluster/configure/tenancy-model#private-nodes">Private Nodes</Link>
20+
</b>
21+
</li>
22+
)}
923
</ul>
1024
</div>
1125
)}
1226
{props.standalone && (
1327
<div>Running the control plane as a binary for <b>vCluster Standalone</b>, which uses <b>private nodes</b>.</div>
1428
)}
15-
16-
1729
:::

0 commit comments

Comments
 (0)