service-workers default to $::processorcount which is 8 in nodes used in CI jobs, this leads to high memory usage, setting it lower would help in reducing random failures in scenario000 used by other projects in there gate. Change-Id: I10cb927db7648b384ce41ef4ae1050a5d4ed8e9e
11 lines
235 B
Bash
Executable File
11 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
if [ $(id -u) != 0 ]; then
|
|
SUDO='sudo'
|
|
fi
|
|
|
|
$SUDO packstack ${ADDITIONAL_ARGS} \
|
|
--allinone \
|
|
--debug \
|
|
--service-workers=2 \
|
|
--default-password="packstack" || export FAILURE=true
|