
- Added support for deb networking-plumgrid install - plumlib.ini changes Signed-off-by: plumgrid <Junaid Ali>
71 lines
2.1 KiB
INI
71 lines
2.1 KiB
INI
# This is the Configuration file for the Python PLUMgrid Library
|
|
|
|
[PLUMgridLibrary]
|
|
# PLUMlib writes to CDB to save some data. If this flag is set to
|
|
# false, PLUMlib will not use CDB utility
|
|
cdb_configuration = True
|
|
|
|
# Name of the interface plugged on fabric network
|
|
fabric_eth = eth1
|
|
|
|
# Security Policy Flag
|
|
enable_pg_security = True
|
|
|
|
# Reverse Flow Flag
|
|
enable_reverse_flow = True
|
|
|
|
# Reverse Flow Flag Tap
|
|
enable_reverse_flow_tap = {{ enable_reverse_flow_tap }}
|
|
|
|
# Flag to enable/disable virtual appliance creation
|
|
vapp_flag = False
|
|
|
|
# Flag to enable/disable nova communication for metaconfig
|
|
nova_metaconfig = {{ nova_metaconfig }}
|
|
|
|
# Metadata Flags. If "metadata_ns" is set to false, respective
|
|
# namespace for metadata won't be created on this node
|
|
[PLUMgridMetadata]
|
|
enable_pg_metadata = {{ enable_metadata }}
|
|
nova_metadata_ip = {{ pg_metadata_ip }}
|
|
nova_metadata_subnet = {{ pg_metadata_subnet }}
|
|
nova_metadata_port = {{ pg_metadata_port }}
|
|
metadata_proxy_shared_secret = {{ nova_metadata_proxy_secret }}
|
|
metadata_ns = True
|
|
|
|
# Where to store Neutron state files
|
|
state_path = /var/lib/neutron/
|
|
|
|
# Name of proxy used in metadata namespaces
|
|
ns_proxy_name = neutron-ns-metadata-proxy
|
|
|
|
# PLUMlib supports two metadata modes: tunnel and local
|
|
# Note: modes cannot be changed on a running system. This config
|
|
# should be done before bringing up the system
|
|
metadata_mode = {{ metadata_mode }}
|
|
|
|
# Use "sudo neutron-rootwrap /etc/neutron/rootwrap.conf" to use the real
|
|
# root filter facility.
|
|
# Change to "sudo" to skip the filtering and just run the comand directly
|
|
root_helper_name = /usr/bin/neutron-rootwrap
|
|
|
|
[DNS]
|
|
enable_dns_update = False
|
|
endpoint = https://DNS_SERVICE_IP/api/v1/api.php
|
|
api_key = 162-22O8BEYWO0DQGIM
|
|
secret_key = 171de423af844bad400a98ea5b9fa56d
|
|
|
|
[ConnectorType]
|
|
connector_type = {{ connector_type }}
|
|
|
|
{% if admin_user -%}
|
|
[keystone_authtoken]
|
|
admin_user = {{ admin_user }}
|
|
admin_password = {{ admin_password }}
|
|
admin_tenant_name = {{ admin_tenant_name }}
|
|
auth_uri = {{ service_protocol }}://{{ auth_host }}:{{ auth_port }}/v2.0/
|
|
identity_version = v2.0
|
|
user_domain_name = {{ user_domain_name }}
|
|
project_domain_name = {{ project_domain_name }}
|
|
{% endif -%}
|