fuel-library/deployment/puppet/vmware/templates/nova-compute.conf.erb
Igor Zinovik d7680c70fe Explicitly disable vCenter certificate verification check
- nova-compute with enabled VCDriver by default tries to verify vCenter
  certificate, if it cannot verify certificate then it cannot start and
  operate normally.  This breaks deployment process for OpenStack
  clusters that use vCenter, because later in post deployment stage we
  cannot add nova-compute services to availability zone, because they
  failed to start.

Change-Id: Iac725db304aae9cd9da910f16d16d4054cc10542
Closes-bug: #1513832
DocImpact: Document the fact that currently it is not possible to
verify vCenter SSL certificate by providing CA certificate bundle.
2015-11-16 09:17:03 +00:00

30 lines
809 B
Plaintext

[DEFAULT]
compute_driver=vmwareapi.VMwareVCDriver
log_file=nova-compute-vmware-<%= @availability_zone_name %>-<%= @service_name %>.log
host=<%= @availability_zone_name %>-<%= @service_name %>
[vmware]
cache_prefix=$host
cluster_name=<%= @vc_cluster %>
host_ip=<%= @vc_host %>
host_username=<%= @vc_user %>
host_password=<%= @vc_password %>
insecure=True
api_retry_count=<%= @api_retry_count %>
maximum_objects=<%= @maximum_objects %>
task_poll_interval=<%= @task_poll_interval %>
<% if @datastore_regex and !@datastore_regex.empty? -%>
datastore_regex=<%= @datastore_regex %>
<% end -%>
<% if @vlan_interface and !@vlan_interface.empty? -%>
vlan_interface=<%= @vlan_interface %>
<% end -%>
use_linked_clone=<%= @use_linked_clone %>
<% if @wsdl_location -%>
wsdl_location=<%= @wsdl_location %>
<% end -%>