Skip to content

Commit d194ec7

Browse files
authored
Merge branch 'main' into google-cloud-python
2 parents b85c900 + 7a7a491 commit d194ec7

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repos:
3636

3737
# Misc...
3838
- repo: https://github.com/pre-commit/pre-commit-hooks
39-
rev: v4.6.0
39+
rev: v5.0.0
4040
# ref: https://github.com/pre-commit/pre-commit-hooks#hooks-available
4141
hooks:
4242
# Autoformat: Makes sure files end in a newline and only a newline

docs/docs/how-tos/nebari-gcp.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ management.
6464

6565
If it's your first time creating a service account, please follow
6666
[these detailed instructions](https://cloud.google.com/iam/docs/creating-managing-service-accounts) to create a Google Service Account with the following roles attached:
67-
"roles/editor", "roles/resourcemanager.projectIamAdmin" and "roles/container.admin".
67+
- [`roles/editor`](https://cloud.google.com/iam/docs/understanding-roles#editor)
68+
- [`roles/resourcemanager.projectIamAdmin`](https://cloud.google.com/iam/docs/understanding-roles#resourcemanager.projectIamAdmin)
69+
- [`roles/container.admin`](https://cloud.google.com/iam/docs/understanding-roles#container.admin)
70+
- [`roles/storage.admin`](https://cloud.google.com/iam/docs/understanding-roles#storage.admin)
6871

6972
For more information about roles and permissions, see the
7073
[Google Cloud Platform IAM documentation](https://cloud.google.com/iam/docs/choose-predefined-roles). Remember to check the active project before creating resources, especially if

docs/docs/how-tos/nebari-local.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,20 @@ security:
159159
tag: sha-b4a2d1e
160160
```
161161
162+
### Increase fs watches
163+
164+
Depending on your host system, you may need to increase the `fs.inotify.max_user_watches` and
165+
`fs.inotify.max_user_instances kernel parameters` if you see the error "too many open files" in the logs of
166+
a failing pod.
167+
168+
```bash
169+
sudo sysctl fs.inotify.max_user_watches=524288
170+
sudo sysctl fs.inotify.max_user_instances=512
171+
```
172+
173+
See the [kind troubleshooting
174+
docs](https://kind.sigs.k8s.io/docs/user/known-issues/#pod-errors-due-to-too-many-open-files) for more information.
175+
162176
## Deploying Nebari
163177

164178
With the `nebari-config.yaml` configuration file now created, Nebari can be deployed for the first time with:

0 commit comments

Comments
 (0)