Declarative Config
You can manage multiple runtimes with a JSON config file.
cat > deployment.json <<EOF{ "apiVersion": "runta/v1", "kind": "SandboxSet", "sandboxes": [ { "name": "ci-runner-1", "resources": { "vcpus": 1, "memory_mib": 512 } }, { "name": "ci-runner-2", "resources": { "vcpus": 1, "memory_mib": 512 } }, { "name": "ci-runner-3", "resources": { "vcpus": 1, "memory_mib": 512 } } ]}EOFPreview the changes:
runta apply -f deployment.json --dry-runApply the config and list the resulting runtimes:
runta apply -f deployment.jsonrunta ps -aClean up the runtimes declared in the config:
runta delete -f deployment.json