fuel-library/deployment/puppet/vmware/templates/nova-compute.conf.erb
Stepan Rogov f4eb4ca975 Puppet modules improved to support multiple clusters of VCenter.
Because puppet module inifile does not support the same option names in one section,
settings of compute service for vmware moved to a separate file (/etc/nova/nova-compute.conf),
which is generated from erb template.

Partially implements: blueprint vcenter-hv-full-scale-support
Change-Id: I6e9ac50e77400ac1abb3687e38ce768386270714
2014-07-11 13:24:44 +04:00

18 lines
505 B
Plaintext

[DEFAULT]
compute_driver=<%= @compute_driver %>
[vmware]
<% for @clustername in @vcenter_cluster.split(',')do -%>
cluster_name=<%= @clustername %>
<% end -%>
use_linked_clone=<%= @use_linked_clone %>
maximum_objects=<%= @maximum_objects %>
api_retry_count=<%= @api_retry_count %>
host_ip=<%= @vcenter_host_ip %>
host_username=<%= @vcenter_user %>
host_password=<%= @vcenter_password %>
task_poll_interval=<%= @task_poll_interval %>
<% if @wsdl_location -%>
wsdl_location=<%= @wsdl_location %>
<% end -%>