Skip to content

Commit 0232699

Browse files
author
Krzysztof Malczuk
committed
Add instructions how to fix the rootless port 80 error to readme
1 parent f6912e7 commit 0232699

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,19 @@ The e2e tests can be executed locally by running the following commands:
4949
make setup-e2e
5050
```
5151

52+
[!NOTE]
53+
If you get an error on linux
54+
```
55+
Error: rootlessport cannot expose privileged port 80
56+
```
57+
You can run the following code to fix it
58+
59+
```bash
60+
echo "net.ipv4.ip_unprivileged_port_start=80" | sudo tee -a /etc/sysctl.conf > /dev/null
61+
sudo sysctl net.ipv4.ip_unprivileged_port_start=80
62+
```
63+
64+
5265
[!NOTE]
5366
Kueue will only activate its Ray integration if KubeRay is installed before Kueue (as done by this make target).
5467

0 commit comments

Comments
 (0)