
It's better to remove it because: 1. Murano supports both nova-net and neutron and it's better to use settings from local.conf 2. Neutron is used by default [1] so this section is unnecessary even if we want to use only neutron [1] I185325a684372e8a2ff25eae974a9a2a2d6277e0 Change-Id: Ie1200f816faf6f262b8b235efdc6e68b6d63ced6 Closes-Bug: #1627707
73 lines
3.0 KiB
Plaintext
73 lines
3.0 KiB
Plaintext
# Settings needed for the Murano plugin
|
|
# -------------------------------------
|
|
|
|
# Set up default repos
|
|
MURANO_REPO=${MURANO_REPO:-${GIT_BASE}/openstack/murano.git}
|
|
MURANO_BRANCH=${MURANO_BRANCH:-master}
|
|
|
|
# Variables, which used in this function
|
|
# https://github.com/openstack-dev/devstack/blob/master/functions-common#L500-L506
|
|
GITREPO["python-muranoclient"]=${MURANO_PYTHONCLIENT_REPO:-${GIT_BASE}/openstack/python-muranoclient.git}
|
|
GITBRANCH["python-muranoclient"]=${MURANO_PYTHONCLIENT_BRANCH:-master}
|
|
GITDIR["python-muranoclient"]=$DEST/python-muranoclient
|
|
|
|
# Set up default directories
|
|
MURANO_DIR=$DEST/murano
|
|
MURANO_CONF_DIR=${MURANO_CONF_DIR:-/etc/murano}
|
|
MURANO_CONF_FILE=${MURANO_CONF_DIR}/murano.conf
|
|
MURANO_CFAPI_CONF_FILE=${MURANO_CONF_DIR}/murano-cfapi.conf
|
|
MURANO_POLICY_FILE=${MURANO_CONF_DIR}/policy.json
|
|
MURANO_DEBUG=${MURANO_DEBUG:-True}
|
|
MURANO_ENABLE_MODEL_POLICY_ENFORCEMENT=${MURANO_ENABLE_MODEL_POLICY_ENFORCEMENT:-False}
|
|
|
|
# Set up murano service endpoint
|
|
MURANO_SERVICE_HOST=${MURANO_SERVICE_HOST:-$SERVICE_HOST}
|
|
MURANO_SERVICE_PORT=${MURANO_SERVICE_PORT:-8082}
|
|
MURANO_SERVICE_PROTOCOL=${MURANO_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
|
|
|
|
# Set up settings for service broker API
|
|
MURANO_CFAPI_SERVICE_PORT=${MURANO_CFAPI_SERVICE_PORT:-8083}
|
|
MURANO_CFAPI_DEFAULT_TENANT=${MURANO_CFAPI_DEFAULT_TENANT:-admin}
|
|
|
|
# Set up default service user for murano
|
|
MURANO_ADMIN_USER=${MURANO_ADMIN_USER:-murano}
|
|
|
|
MURANO_KEYSTONE_SIGNING_DIR=${MURANO_KEYSTONE_SIGNING_DIR:-/tmp/keystone-signing-muranoapi}
|
|
|
|
# Set up murano networking settings
|
|
MURANO_DEFAULT_ROUTER=${MURANO_DEFAULT_ROUTER:-''}
|
|
MURANO_EXTERNAL_NETWORK=${MURANO_EXTERNAL_NETWORK:-''}
|
|
MURANO_DEFAULT_DNS=${MURANO_DEFAULT_DNS:-''}
|
|
|
|
# Choose applications for installation
|
|
MURANO_APPS=${MURANO_APPS:-''}
|
|
MURANO_APPS_DIR=$DEST/murano-apps
|
|
MURANO_APPS_REPO=${MURANO_APPS_REPO:-${GIT_BASE}/openstack/murano-apps.git}
|
|
MURANO_APPS_BRANCH=${MURANO_APPS_BRANCH:-master}
|
|
|
|
# MURANO_RABBIT_VHOST allows to specify a separate virtual host for Murano services.
|
|
# This is not required if all OpenStack services are deployed by devstack scripts
|
|
# on a single node. In this case '/' virtual host (which is the default) is enough.
|
|
# The problem arise when Murano installed in 'devbox' mode, allowing two or more
|
|
# devboxes to use one common OpenStack host. In this case it's better devboxes
|
|
# use separated virtual hosts, to avoid conflicts between Murano services.
|
|
# This couldn't be done using existing variables, so that's why this variable was added.
|
|
MURANO_RABBIT_VHOST=${MURANO_RABBIT_VHOST:-''}
|
|
|
|
# Settings needed for the Murano Tempest Plugin installation
|
|
TEMPEST_DIR=$DEST/tempest
|
|
TEMPEST_CONFIG_DIR=${TEMPEST_CONFIG_DIR:-$TEMPEST_DIR/etc}
|
|
TEMPEST_CONFIG=$TEMPEST_CONFIG_DIR/tempest.conf
|
|
|
|
# GlARe variables
|
|
# Glance Artifact Repository endpoint type for Murano communications.
|
|
# Public by default.
|
|
GLARE_ENDPOINT_TYPE=${GLARE_ENDPOINT_TYPE:-publicURL}
|
|
|
|
enable_service murano
|
|
enable_service murano-api
|
|
enable_service murano-engine
|
|
|
|
# Enable heat orchestration engine and other heat services
|
|
enable_service heat h-api h-api-cfn h-api-cw h-eng
|