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

Don't give temple its own nodepool #3538

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
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
7 changes: 0 additions & 7 deletions config/clusters/2i2c/temple.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ jupyterhub:
name: Temple University
url: https://www.temple.edu/
singleuser:
nodeSelector:
2i2c.org/community: temple
extraTolerations:
- key: "2i2c.org/community"
operator: "Equal"
value: "temple"
effect: "NoSchedule"
memory:
# Memory defaults are 256MB to 1G in basehub. These are bumped based on a
# request to bump these (https://2i2c.freshdesk.com/a/tickets/1003) at
Expand Down
21 changes: 0 additions & 21 deletions terraform/gcp/projects/pilot-hubs.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -34,27 +34,6 @@ notebook_nodes = {
max : 100,
machine_type : "n2-highmem-64",
},
# Nodepool for temple university. https://github.com/2i2c-org/infrastructure/issues/3158
"temple-b" : {
# Expecting upto ~120 users at a time
min : 0,
max : 100,
# Everyone gets a 256M guarantee, and n2-highmem-8 has about 60GB of RAM.
# This fits upto 100 users on the node, as memory guarantee isn't the constraint.
# This works ok.
machine_type : "n2-highmem-8",
labels : {
"2i2c.org/community" : "temple"
},
taints : [{
key : "2i2c.org/community",
value : "temple",
effect : "NO_SCHEDULE"
}],
resource_labels : {
"community" : "temple"
},
}
}

# Setup a single node pool for dask workers.
Expand Down