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

Deploying Cluster for Pangeo #489

Merged
merged 13 commits into from
Aug 4, 2021
Merged
30 changes: 30 additions & 0 deletions terraform/projects/pangeo-hubs.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
prefix = "pangeo-hubs"
project_id = "pangeo-integration-te-3eea"

core_node_machine_type = "n1-highmem-4"

# Multi-tenant cluster, network policy is required to enforce separation between hubs
enable_network_policy = true

# Some hubs want a storage bucket, so we need to have config connector enabled
config_connector_enabled = true

notebook_nodes = {
"user" : {
min : 0,
max : 20,
machine_type : "n1-highmem-4"
},
}

dask_nodes = {
"worker" : {
min : 0,
max : 100,
machine_type : "n1-highmem-4"
},
}

user_buckets = [
"pangeo-scratch"
]