You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/00-install-kubernetes-env.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,6 +126,30 @@ Before you begin, ensure the following:
126
126
TEST SUITE: None
127
127
```
128
128
129
+
4. Some troubleshooting tips for installing gpu-operator:
130
+
131
+
If gpu-operator fails to start because of the common seen “too many open files” issue for minikube (and [kind](https://kind.sigs.k8s.io/)), then a quick fix below may be helpful.
132
+
133
+
The issue can be observed by one or more gpu-operator pods in`CrashLoopBackOff` status, and be confirmed by checking their logs. For example,
I0131 19:35:42.895917 1 main.go:238] Starting FS watcher for /var/lib/kubelet/device-plugins
148
+
E0131 19:35:42.895933 1 main.go:173] failed to create FS watcher for /var/lib/kubelet/device-plugins/: too many open files
149
+
```
150
+
151
+
The fix is [well documented](https://kind.sigs.k8s.io/docs/user/known-issues#pod-errors-due-to-too-many-open-files) by kind, it also works for minikube.
0 commit comments