openstack-chef/environments/allinone.json

54 lines
1.2 KiB
JSON

{
"name": "allinone",
"description": "Environment used in testing the upstream cookbooks and reference Chef repository with vagrant. To be used with the vagrantfile-allinone vagrantfile. Defines the necessary attributes for a working all-in-one openstack deployment, using neutron for the networking component, and the openvswitch neutron plugin",
"default_attributes": {
"apache": {
"listen": [
]
}
},
"override_attributes": {
"openstack": {
"is_release": true,
"apt": {
"update_apt_cache": "true"
},
"telemetry": {
"conf": {
"DEFAULT": {
"meter_dispatchers": "database"
}
}
},
"dashboard": {
"server_hostname": "localhost"
},
"memcached_servers": [
"127.0.0.1:11211"
],
"mq": {
"user": "admin"
},
"network": {
"conf": {
"DEFAULT": {
"service_plugins": "router"
}
}
},
"image": {
"image_upload": true
},
"compute": {
"conf": {
"libvirt": {
"cpu_type": "none",
"virt_type": "qemu"
}
}
}
}
}
}