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