diff options
author | Harry Huang <huangxiangyu5@huawei.com> | 2016-11-25 04:08:19 +0800 |
---|---|---|
committer | Harry Huang <huangxiangyu5@huawei.com> | 2016-11-25 04:08:19 +0800 |
commit | cceecd6920ae01d99dafb46d225f69e4546f278b (patch) | |
tree | 2cc1f2a0f3504b453685b6a18e1dd460c6e55dda /deploy/compass_conf/flavor_mapping/allinone.conf | |
parent | 7c6a13e3457ce64d4b840e3816215f2a758ed0bc (diff) |
add compass-core conf/ into compass4nfv
JIRA: COMPASS-507
1.create deploy/compass_conf/ directory to keep local
compass-core conf/ files. build.sh will add it into
compass.iso
2.adjust conf files to support congress
Change-Id: I91dde6f62f2385d1289a5cf9a39eafce945a1bc7
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
Diffstat (limited to 'deploy/compass_conf/flavor_mapping/allinone.conf')
-rwxr-xr-x | deploy/compass_conf/flavor_mapping/allinone.conf | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/deploy/compass_conf/flavor_mapping/allinone.conf b/deploy/compass_conf/flavor_mapping/allinone.conf new file mode 100755 index 00000000..4752a805 --- /dev/null +++ b/deploy/compass_conf/flavor_mapping/allinone.conf @@ -0,0 +1,132 @@ +ADAPTER = 'openstack-icehouse' +FLAVOR = 'allinone' +CONFIG_MAPPING = { + "mapped_name": "flavor_config", + "mapped_children": [{ + "security": { + "accordion_heading": "OpenStack Database and Queue Credentials", + "category": "service_credentials", + "data_structure": "table", + "action": "true", + "modifiable_data": ["username", "password"], + "table_display_header": ["Service", "UserName", "Password", "Action"], + "config": { + "rabbitmq": { + "username": "guest", + "password": "guest" + }, + "compute": { + "username": "nova", + "password": "nova" + }, + "dashboard": { + "username": "dashboard", + "password": "dashboard" + }, + "identity": { + "username": "keystone", + "password": "keystone" + }, + "image": { + "username": "glance", + "password": "glance" + }, + "metering": { + "username": "ceilometer", + "password": "ceilometer" + }, + "mysql": { + "username": "root", + "password": "root" + }, + "volume": { + "username": "cinder", + "password": "cinder" + } + } + } + },{ + "security": { + "accordion_heading": "OpenStack Keystone User Credentials", + "category": "console_credentials", + "data_structure": "table", + "action": "true", + "modifiable_data": ["username", "password"], + "table_display_header": ["Service", "UserName", "Password", "Action"], + "config":{ + "admin": { + "username": "admin", + "password": "admin" + }, + "compute": { + "username": "nova", + "password": "nova" + }, + "dashboard": { + "username": "dashboard", + "password": "dashboard" + }, + "image": { + "username": "glance", + "password": "glance" + }, + "metering": { + "username": "ceilometer", + "password": "ceilometer" + }, + "network": { + "username": "quantum", + "password": "quantum" + }, + "object-store": { + "username": "swift", + "password": "swift" + }, + "volume": { + "username": "cinder", + "password": "cinder" + } + } + } + },{ + "neutron_config": { + "accordion_heading": "Neutron Configurations", + "data_structure": "form", + "category": "neutron_config", + "form_name": "neutronForm", + "data": { + "openvswitch": { + "tenant_network_type": { + "label": "Tenant Network Type", + "input_type": "dropdown", + "mapped_key": [ + "name", "is_required", "options", "default_value" + ], + "content_data": { + "gre": [{ + "label": "Tunnel ID Ranges", + "is_required": "true", + "display_type": "dropdown_text_multiple", + "name": "tunnel_id_ranges", + "hint": "1:1000", + }], + "vlan": [{ + "label": "Network Vlan Ranges", + "is_required": "true", + "display_type": "dropdown_text_multiple", + "name": "network_vlan_ranges", + "hint": "physnet1:2700:2999" + }, { + "label": "Bridge Mapping", + "is_required": "true", + "display_type": "dropdown_text_multiple", + "name": "bridge_mappings", + "hint": "physnet1:br-eth1" + }] + } + } + } + } + } + }] +} |