xcat-core/xCAT-OpenStack/chef-cookbooks/grizzly-xcat/roles/os-compute-single-controller.rb
jjhua 54f2ee5abe add the role[os-network-dhcp-agent] into os-compute-single-controller.rb .
It could be used to allocate IP for the nova VMs when using role[allinone-compute]
2013-11-28 13:45:08 -05:00

24 lines
747 B
Ruby

name "os-compute-single-controller"
description "Roll-up role for all of the OpenStack Compute services on a single, non-HA controller."
run_list(
"role[os-base]",
"role[os-ops-database]",
"role[os-ops-messaging]",
"role[os-identity]",
"role[os-network-server]",
"role[os-network-dhcp-agent]",
"role[os-compute-scheduler]",
"role[os-compute-api]",
"role[os-compute-cert]",
"role[os-compute-vncproxy]",
"role[os-compute-setup]",
"recipe[openstack-compute::conductor]",
"role[os-block-storage]",
"role[os-dashboard]",
"role[os-image]",
"role[os-block-storage-endpoint-registration]",
"role[os-compute-endpoint-registration]",
"role[os-image-endpoint-registration]",
"role[os-network-endpoint-registration]"
)