blob: 2c65df0d5f59e69b047de4a9d0a97ef93b73a0a8 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
if [[ $DEPLOY_SCENARIO == "os-odl-nofeature" ]] && [[ $XCI_FLAVOR == "ha" ]]; then
export VM_MEMORY_SIZE=20480
elif [[ $DEPLOY_SCENARIO == "os-odl-nofeature" ]]; then
export VM_MEMORY_SIZE=16384
fi
|