openstack-chef/environments/integration.json

53 lines
1009 B
JSON

{
"name": "integration",
"description": "Chef environment file for building OpenStack in CI settings. Certain Tempest services are disabled in this scenario",
"default_attributes": {
"apache": {
"listen": [
]
},
"openstack": {
"network": {
"conf": {
"DEFAULT": {
"service_plugins": "router"
}
}
}
}
},
"override_attributes": {
"openstack": {
"is_release": true,
"telemetry": {
"conf": {
"DEFAULT": {
"meter_dispatchers": "database"
}
}
},
"dashboard": {
"server_hostname": "localhost"
},
"memcached_servers": [
"127.0.0.1:11211"
],
"mq": {
"user": "admin"
},
"image": {
"image_upload": true
},
"compute": {
"conf": {
"libvirt": {
"cpu_type": "none",
"virt_type": "qemu"
}
}
}
}
}
}