Allow to specify custom modules and artifact types in devstack

This patch adds a possibility to set third-party modules
and enable additional artifact types during devstack deployment.

Change-Id: I84fcf741f20e061c73515c979d0fe89da460f467
This commit is contained in:
Mike Fedosin 2017-07-11 19:01:39 +03:00
parent 14a0fb1c90
commit 6b67968cbc
1 changed files with 10 additions and 0 deletions

View File

@ -57,6 +57,16 @@ function configure_glare {
iniset $GLARE_CONF_FILE DEFAULT debug $GLARE_DEBUG
# Specify additional modules with external artifact types
if [ -n "$GLARE_CUSTOM_MODULES" ]; then
iniset $GLARE_CONF_FILE DEFAULT custom_artifact_types_modules $GLARE_CUSTOM_MODULES
fi
# Specify a list of enabled artifact types
if [ -n "$GLARE_ENABLED_TYPES" ]; then
iniset $GLARE_CONF_FILE DEFAULT enabled_artifact_types $GLARE_ENABLED_TYPES
fi
oslopolicy-sample-generator --namespace=glare --output-file=$GLARE_POLICY_FILE
sed -i 's/^#"//' $GLARE_POLICY_FILE