File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed
vcluster_versioned_docs/version-0.30.0/_fragments Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 1+ import Link from ' @docusaurus/Link' ;
2+
13:::info Limited vCluster Tenancy Configuration Support
24This feature is only available for the following:
35{ (props .hostNodes || props .privateNodes ) && (
46<div >
57Running 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:::
You can’t perform that action at this time.
0 commit comments