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

Enable shared directories for PS 191 #6646

Merged
merged 4 commits into from
Jan 17, 2025
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
22 changes: 21 additions & 1 deletion deployments/r/config/common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,27 @@ jupyterhub:
mem_limit: 2048M
mem_guarantee: 2048M

# PS 191, Spring 25, https://github.com/berkeley-dsep-infra/datahub/issues/6593
# PolSci 191, Spring 2025, https://github.com/berkeley-dsep-infra/datahub/issues/6593
course::1541486:
mem_limit: 6144M
mem_guarantee: 6144M

# PolSci 191, Spring 2025, https://github.com/berkeley-dsep-infra/datahub/issues/6643
course::1541486::enrollment_type::teacher:
extraVolumeMounts:
- name: home
mountPath: /home/jovyan/_shared/polsci191-readwrite
subPath: _shared/2025-spring/courses/1541486
readOnly: false
course::1541486::enrollment_type::ta:
extraVolumeMounts:
- name: home
mountPath: /home/jovyan/_shared/polsci191-readwrite
subPath: _shared/2025-spring/courses/1541486
readOnly: false
course::1541486::enrollment_type::student:
extraVolumeMounts:
- name: home
mountPath: /home/jovyan/_shared/polsci191-readonly
subPath: _shared/2025-spring/courses/1541486
readOnly: true
Loading