mirror of
https://github.com/stablyai/orca.git
synced 2026-09-21 16:02:20 +00:00
Phase 6 of the relay split: the relay's deploy/operate surface moves under cloud/ with 24 cloud-* workflows gated on ORCA_CLOUD_OPERATIONS_ENABLED, the Cloud SQL rollout lease action, the relay Terraform root (dual-accept identities for both repositories), scripts, docs, CODEOWNERS, and a terraform validate job in Cloud Verify.
9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
import { assertSpreadModel, modeledRelayLoad } from './relay-load-model.mjs'
|
|
|
|
const counts = process.argv.slice(2).length > 0 ? process.argv.slice(2).map(Number) : [4_000, 10_000]
|
|
for (const count of counts) {
|
|
const model = modeledRelayLoad(count)
|
|
assertSpreadModel(model)
|
|
console.log(JSON.stringify(model))
|
|
}
|