Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the HNS networking component #187

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions docs/install/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ To read more about the config.yaml file, see the [Install Options documentation.

### Windows Agent (Worker) Node Installation
**Windows Support is currently Experimental as of v1.21.3+rke2r1**
**Windows Support requires choosing Calico as the CNI for the RKE2 cluster**
**Windows Support works with Calico or Flannel as the CNI for the RKE2 cluster**

#### 0. Prepare the Windows Agent Node
**Note** The Windows Server Containers feature needs to be enabled for the RKE2 agent to work.
Expand All @@ -124,11 +124,16 @@ Open a new Powershell window with Administrator privileges
powershell -Command "Start-Process PowerShell -Verb RunAs"
```

In the new Powershell window, run the following command.
In the new Powershell window, run the following command to install the containers feature.
```powershell
Enable-WindowsOptionalFeature -Online -FeatureName containers –All
```
This will require a reboot for the `Containers` feature to properly function.
As well as the following command to install all the required HNS networking components:
```powershell
Install-WindowsFeature -Name Hyper-V-PowerShell
```

This will require a reboot for the `Containers` and the `Hyper-V` features to properly function.

#### 1. Download the Install Script
```powershell
Expand Down