Skip to content

Commit

Permalink
Include information how to deploy control plane with NodePort service
Browse files Browse the repository at this point in the history
  • Loading branch information
janekbaraniewski committed Jul 1, 2024
1 parent 05f5312 commit 4c74c66
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions vcluster/deploy/topologies/isolated-control-plane.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,23 @@ networking:
byIP: false
```
<details>
<summary>
Setting up control plane without Load Balancer support
</summary>
By default vCluster starts a `LoadBalancer` type Service to serve API. In some environments like local development clusters or bare metal clusters you might want to use `NodePort` type instead. In order to do this, include this configuration in your `vcluster.yaml` file.

```yaml
controlPlane:
service:
spec:
type: NodePort
httpsNodePort: 30999
```
</details>


Deploy the control plane vCluster with the following command:

```bash
Expand Down

0 comments on commit 4c74c66

Please sign in to comment.