-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3129 from GeorgianaElena/hhmi-hub-cluster
Add hhmi cluster
- Loading branch information
Showing
2 changed files
with
57 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
prefix = "hhmi" | ||
project_id = "hhmi" | ||
|
||
zone = "us-west2" | ||
region = "us-west2" | ||
|
||
# Default to a HA cluster for reliability | ||
regional_cluster = true | ||
|
||
core_node_machine_type = "n2-highmem-4" | ||
|
||
# Network policy is required to enforce separation between hubs on multi-tenant clusters | ||
# Tip: uncomment the line below if this cluster will be multi-tenant | ||
# enable_network_policy = true | ||
|
||
# Setup a filestore for in-cluster NFS | ||
enable_filestore = true | ||
filestore_capacity_gb = 1024 | ||
|
||
user_buckets = {} | ||
hub_cloud_permissions = {} | ||
|
||
# Setup notebook node pools | ||
notebook_nodes = { | ||
"small" : { | ||
min : 0, | ||
max : 100, | ||
machine_type : "n2-highmem-4", | ||
}, | ||
"medium" : { | ||
min : 0, | ||
max : 100, | ||
machine_type : "n2-highmem-16", | ||
}, | ||
"large" : { | ||
min : 0, | ||
max : 100, | ||
machine_type : "n2-highmem-64", | ||
}, | ||
} | ||
|
||
# Setup a single node pool for dask workers. | ||
# | ||
# A not yet fully established policy is being developed about using a single | ||
# node pool, see https://github.com/2i2c-org/infrastructure/issues/2687. | ||
# | ||
dask_nodes = { | ||
"worker" : { | ||
min : 0, | ||
max : 200, | ||
machine_type : "n2-highmem-16", | ||
}, | ||
} |