Skip to content

Commit c457ad4

Browse files
committed
Variable updates
1 parent 894159d commit c457ad4

File tree

3 files changed

+42
-3
lines changed

3 files changed

+42
-3
lines changed

production.tfvars

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ hpc_resource_provisioner_sbo_nexusdata_bucket = ""
7272
sbo_infrastructureassets_bucket = "s3://sboinfrastructureassets"
7373
hpc_resource_provisioner_containers_bucket = ""
7474
hpc_resource_provisioner_scratch_bucket = ""
75+
hpc_resource_provisioner_scratch_bucket_arn = ""
7576
pcluster_ami_id = ""
7677

7778
entitycore_svc_aws_s3_internal_bucket = "entitycore-data-production"

sandbox-hpc.tfvars

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ nexus_ship_bucket_name = "nexus-ship-sandbox-hpc-test"
1111
nexus_openscience_bucket_name = "nexus-openscience-sandbox-hpc-test"
1212
nexus_az_letter_id = "a"
1313
core_web_app_docker_image_url = "bluebrain/sbo-core-web-app:2025.1.0-prod"
14+
core_web_app_next_docker_image_url = "public.ecr.aws/openbraininstitute/core-web-app:entitycore-migration-aws"
1415
virtual_lab_manager_docker_image_url = "public.ecr.aws/openbraininstitute/virtual-lab-api:20250226.1"
1516
thumbnail_generation_api_docker_image_url = "bluebrain/thumbnail-generation-api:latest"
1617
cell_svc_docker_image_url = "public.ecr.aws/openbraininstitute/sonata-cell-position:2025.5.0"
@@ -21,6 +22,33 @@ is_nexus_obp_running = true
2122
jupyterhub_ec2_type = "c7i.4xlarge"
2223
notebook_service_docker_image_url = "public.ecr.aws/openbraininstitute/notebook-service:staging"
2324

25+
bluenaas_docker_image_url = "public.ecr.aws/openbraininstitute/single-cell-simulator:staging"
26+
bluenaas_task_size = {
27+
cpu = 4096
28+
memory = 8192
29+
}
30+
31+
small_scale_simulator_api_docker_image_url = "public.ecr.aws/openbraininstitute/single-cell-simulator:api-staging"
32+
small_scale_simulator_worker_docker_image_url = "public.ecr.aws/openbraininstitute/single-cell-simulator:worker-staging"
33+
small_scale_simulator_api_task_size = {
34+
cpu = 256
35+
memory = 512
36+
}
37+
small_scale_simulator_workers = {
38+
default = {
39+
task_size = {
40+
cpu = 4096
41+
memory = 8192
42+
}
43+
num_workers = 4
44+
queues = "high medium low"
45+
autoscaler_min_capacity = 1
46+
capacity_provider_strategy = [
47+
{ capacity_provider = "FARGATE_SPOT", weight = 100 }
48+
]
49+
}
50+
}
51+
2452
virtual_lab_manager_task_size = {
2553
cpu = 512
2654
memory = 1024
@@ -31,7 +59,7 @@ keycloak_task_size = {
3159
memory = 2048
3260
}
3361
coreservices_public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy8UW1JdUjIuiiaI+xFId3smXFe6iwxdn6Klqi8y4E+cFHP/uQxW4AuCfJVoOjOQ2CNU0UIGRlCkw3IwUmZvwGjFZS1Vs6jt+KjWiDRdFzQQrz5+vuqPX2576wXlT+EHe0W6r7Qla5i1L6cjz6/E4u5yFZ3MJQSBYjLqXjT7Da4R72gPx9oiIoSH2JBu3vHyfkTEo3l6C+WJlYnUGOLnUxGGGnhJrBKmIRNMmtRNgQlBkPR4mnCAFABJfgpzgNf4bpqLbma5DabQGbvpX6qCLSAV5Zdd4gBQLIAJfS/a5pMWaIy9qDTWB2vy4Z39HI45k6efrLL+xgo+XYSRqn5jDT heeren@Mac"
34-
hpc_resource_provisioner_container_version = "0.5.12.dev79"
62+
hpc_resource_provisioner_container_version = "0.5.12.dev5"
3563
core_web_app_deployment_env = "staging"
3664
core_web_app_next_public_matomo_site_id = "3"
3765
is_hpc_dev = true
@@ -47,7 +75,16 @@ hpc_resource_provisioner_scratch_bucket = "s3://sbosandbox-lec3cn"
4775
hpc_resource_provisioner_scratch_bucket_arn = "arn:aws:s3:::sbosandbox-lec3cn"
4876
pcluster_ami_id = "ami-027ff2490377d3048"
4977

50-
entitycore_svc_image_url = "public.ecr.aws/openbraininstitute/entitycore:2025.4.2"
78+
entitycore_svc_aws_s3_internal_bucket = "entitycore-data-staging"
79+
entitycore_svc_aws_s3_internal_region = "us-east-1"
80+
entitycore_svc_aws_s3_open_bucket = "openbluebrain"
81+
entitycore_svc_aws_s3_open_region = "us-west-2"
82+
entitycore_svc_s3_bucket_allowed_origins = ["*"]
83+
entitycore_svc_image_url = "public.ecr.aws/openbraininstitute/entitycore:2025.4.2"
5184

52-
obi_one_docker_image_url = "public.ecr.aws/openbraininstitute/obi-one:2025.4.2"
85+
obi_one_docker_image_url = "public.ecr.aws/openbraininstitute/obi-one:2025.4.2"
86+
obi_one_task_size = {
87+
cpu = 512
88+
memory = 1024
89+
}
5390
obi_generative_gui_docker_image_url = "public.ecr.aws/openbraininstitute/obi-generative-gui:2025.4.5"

staging.tfvars

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ hpc_resource_provisioner_sbo_nexusdata_bucket = ""
6868
sbo_infrastructureassets_bucket = "s3://sboinfrastructureassets-staging"
6969
hpc_resource_provisioner_containers_bucket = ""
7070
hpc_resource_provisioner_scratch_bucket = ""
71+
hpc_resource_provisioner_scratch_bucket_arn = ""
7172
pcluster_ami_id = ""
7273

7374
entitycore_svc_aws_s3_internal_bucket = "entitycore-data-staging"

0 commit comments

Comments
 (0)