Skip to content

Commit

Permalink
Attempt to mount a volume at PUDL_OUTPUT so we can complete the build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdangerx committed Jan 16, 2024
1 parent f836d1e commit bc60c48
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion devtools/generate_batch_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,33 @@ def to_config(
}
],
"computeResource": {"cpuMilli": 8000, "memoryMib": 32768},
"volumes": [
{
"deviceName": "local-ssd",
"mountPath": "/home/mambauser/pudl_work/output",
"mountOptions": "rw,async",
}
],
"maxRunDuration": f"{60 * 60 * 8}s",
}
}
],
"allocationPolicy": {
"serviceAccount": {
"email": "deploy-pudl-vm-service-account@catalyst-cooperative-pudl.iam.gserviceaccount.com"
}
},
"instances": [
{
"policy": {
"disks": [
{
"newDisk": {"sizeGb": 375, "type": "local-ssd"},
"deviceName": "local-ssd",
}
]
}
}
],
},
"logsPolicy": {"destination": "CLOUD_LOGGING"},
}
Expand Down

0 comments on commit bc60c48

Please sign in to comment.