diff --git a/docs/quickstarts/quickstart-2-remote.md b/docs/quickstarts/quickstart-2-remote.md index 03fd859e4..904362dc1 100644 --- a/docs/quickstarts/quickstart-2-remote.md +++ b/docs/quickstarts/quickstart-2-remote.md @@ -15,7 +15,58 @@ Note that if you have already done one of the other quickstarts, such as our AWS Before proceeding, make sure your management cluster meets the following requirements: -1. A [default storage class](https://kubernetes.io/docs/tasks/administer-cluster/change-default-storage-class/) is configured on the management cluster to support Persistent Volumes. +1. Increase filesystem limits by adding the following to `/etc/sysctl.conf`: + + ```bash + fs.inotify.max_user_instances=8192 + fs.inotify.max_user_watches=524288 + ``` + + Then set `systemd` limits: + + ```bash + sudo tee -a /etc/systemd/system.conf <